-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-inline-styler",
"version": "3.1.0",
"description": "react inline styles injector",
"main": "./distribution/index.js",
"license": "MIT",
"keywords": [
"react",
"styles",
"inline styles",
"react styling",
"javascript-css",
"inline css",
"inline styler"
],
"engines": {
"node": ">=6.5",
"npm": ">=3.10"
},
"author": "Ahmad Bamieh <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Bamieh/react-inline-styler"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.0.0-0 || ^16.0.0-0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.39",
"@babel/core": "^7.0.0-beta.39",
"@babel/node": "^7.0.0-beta.39",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.39",
"@babel/plugin-proposal-export-default-from": "^7.0.0-beta.39",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"@babel/preset-react": "^7.0.0-beta.39",
"@babel/register": "^7.0.0-beta.39",
"babel-plugin-istanbul": "^4.1.5",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.0",
"chai-spies": "^0.7.1",
"codecov": "^2.1.0",
"coveralls": "^2.13.1",
"cross-env": "^4.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"glob": "^7.1.1",
"jsdom": "^9.12.0",
"mkdirp": "^0.5.1",
"mocha": "^3.3.0",
"nyc": "^11.3.0",
"object.entries": "^1.0.4",
"react": "^16.2.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.1"
},
"scripts": {
"test": "cross-env NODE_ENV=test mocha",
"test:watch": "npm run test -- --reporter min --watch",
"test:cover": "cross-env NODE_ENV=test nyc npm run test",
"clean": "babel-node tools/run clean",
"build:babel": "cross-env NODE_ENV=production babel src --out-dir distribution --compact=true --no-comments",
"build": "cross-env NODE_ENV=production babel-node tools/run build",
"prepublish": "npm run build",
"coverage:html": "npm run test:cover && nyc report --reporter=html",
"coverage:lcov": "npm run test:cover && nyc report --reporter=lcov",
"coverage": "npm run coverage:html && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"codecov": "codecov"
},
"dependencies": {
"hoist-non-react-statics": "^3.0.1"
}
}