-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
96 lines (96 loc) · 3.01 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "horizon-react",
"version": "0.5.0",
"description": "React bindings for horizon",
"main": "./lib/index.js",
"scripts": {
"build:lib": "NODE_ENV=development babel src --out-dir lib --ignore test.js",
"build:umd": "cross-env NODE_ENV=development webpack --config=webpack.config.js src/index.js dist/horizon-react.js",
"build:umd:min": "cross-env NODE_ENV=production webpack --config=webpack.config.js src/index.js dist/horizon-react.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"prepublish": "npm run build",
"test": "cross-env NODE_ENV=test ava",
"test:watch": "cross-env NODE_ENV=test ava --watch",
"test:report": "cross-env NODE_ENV=test npm test && nyc report --reporter=html",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"test:codecov": "cross-env NODE_ENV=test cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flipace/horizon-react.git"
},
"keywords": [
"react",
"horizon"
],
"author": "Patrick Neschkudla <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flipace/horizon-react/issues"
},
"ava": {
"files": [
"./src/**/*.test.js"
],
"failFast": true,
"tap": true,
"verbose": true,
"require": [
"babel-register",
"./test/helpers/setup-browser-env.js"
],
"babel": "inherit"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"homepage": "https://github.com/flipace/horizon-react#readme",
"devDependencies": {
"@horizon/client": "^2.0.0",
"ava": "^0.15.2",
"ava-spec": "^1.0.1",
"babel-cli": "6.7.5",
"babel-core": "6.7.5",
"babel-eslint": "6.0.0",
"babel-loader": "6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-syntax-jsx": "6.3.13",
"babel-plugin-transform-class-properties": "6.4.0",
"babel-plugin-transform-runtime": "6.7.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "^6.3.13",
"codecov.io": "^0.1.6",
"cross-env": "^1.0.7",
"enzyme": "^2.4.1",
"es3ify": "^0.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.5.0",
"eslint-plugin-jsx-a11y": "^1.0.2",
"eslint-plugin-react": "^5.0.1",
"glob": "^6.0.4",
"jsdom": "^9.4.1",
"jsdom-global": "^2.0.0",
"nyc": "^7.1.0",
"proxyquire": "^1.7.10",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"webpack": "^1.13.2"
},
"dependencies": {
"is-plain-object": "^2.0.1",
"lodash.isequal": "^4.1.4"
},
"peerDependencies": {
"@horizon/client": "^1.0.1 || ^2.0.0",
"react": "^0.14.0 || ^15.0.1",
"react-dom": "^0.14.0 || ^15.0.1"
}
}