forked from unirakun/hoc-react-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.07 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
{
"name": "hoc-react-loader",
"version": "3.1.0",
"description": "Higher order component to call a load function from props at mount.",
"main": "build/index.js",
"peerDependencies": {
"react": "^15.3.0",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2017": "^1.6.1",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"blanket": "^1.2.3",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.14",
"cross-env": "^2.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"jsdom": "^9.4.2",
"lodash": "^4.15.0",
"mocha": "^3.0.2",
"nyc": "^8.3.0",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"tinycolor2": "^1.4.1",
"webpack": "^1.13.1"
},
"scripts": {
"lint": "find src -iname \"*.jsx\" -exec eslint {} +; find src -iname \"*.js\" -exec eslint {} +;",
"build": "cross-env BABEL_ENV=cjs babel --ignore \"*.spec.js\" ./src/ --out-dir build",
"test": "mocha --recursive --compilers js:babel-register --require ./misc/testSetup.js \"src/**/*.spec.js\" ",
"coverage": "nyc --extension .jsx npm test",
"coveralls": "nyc --extension .jsx npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zenika/hoc-react-loader.git"
},
"author": "Fabien JUIF <fabien.juif@zenika.com>",
"contributors": [
"Yvonnick FRIN <yvonnick.frin@zenika.com>",
"Benjamin CAVY <benjamin.cavy@gmail.com>"
],
"license": "MIT",
"keywords": [
"react",
"loader",
"hoc",
"placeholder"
],
"bugs": {
"url": "https://github.com/Zenika/hoc-react-loader/issues"
},
"homepage": "https://github.com/Zenika/hoc-react-loader#readme"
}