-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
104 lines (104 loc) · 2.75 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
97
98
99
100
101
102
103
104
{
"name": "redux-fractal",
"version": "1.8.1",
"description": "A local component state management library using Redux",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"npmName": "redux-fractal",
"scripts": {
"build": "rimraf dist && cross-env BABEL_ENV=production && $(npm bin)/babel -d dist src",
"prepublish": "npm run build",
"test-dev": "cross-env BABEL_ENV=development && cross-env NODE_ENV=development && ava --watch --serial --no-cache tests/*Spec.js",
"test-dev-coverage": "cross-env BABEL_ENV=development && nyc ava --serial --watch tests/*Spec.js",
"test": "cross-env BABEL_ENV=development && nyc ava --serial tests/*Spec.js",
"pretty-coverage": "./node_modules/.bin/nyc report --reporter=html"
},
"ava": {
"require": [
"babel-core/register",
"./tests/helpers/setupEnv.js"
],
"babel": "inherit"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-runtime"
],
"ignore": [
"tests/**/*Spec.js"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcazaciuc/redux-fractal.git"
},
"keywords": [
"javascript",
"redux",
"react",
"local state",
"fractal architecture",
"component state",
"ui state",
"React state"
],
"author": "Cazaciuc Gabriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcazaciuc/redux-fractal/issues"
},
"homepage": "https://github.com/gcazaciuc/redux-fractal#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.14.0",
"coveralls": "^2.11.12",
"cross-env": "^3.0.0",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"jsdom": "^9.4.2",
"nyc": "^8.1.0",
"prop-types": "^15.6.0",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-saga": "^0.12.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0",
"prop-types": "^15.6.0",
"redux": "^2.0.0 || ^3.0.0",
"react-redux": "*"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"hoist-non-react-statics": "^1.2.0",
"invariant": "^2.2.1"
}
}