-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
76 lines (76 loc) · 2.53 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": "redux-crud-store",
"version": "5.6.0",
"description": "Store of server-side models for Redux single page applications",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src",
"dist",
"README.md"
],
"scripts": {
"clean": "rimraf lib dist es",
"build": "npm run build:commonjs && npm run build:types && npm run build:umd && npm run build:umd:min && npm run build:es",
"prepublish": "npm run clean && npm run test && npm run build",
"postpublish": "git add -A package.json src dist lib es && git commit -m \"publish v${npm_package_version}\"; scripts/tag-with-changelog.sh v${npm_package_version} && git push && git push --tags",
"posttest": "npm run lint",
"lint": "flow check && eslint src test",
"test": "cross-env BABEL_ENV=commonjs nyc mocha --compilers js:babel-core/register --reporter spec test/*.js",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build:types": "node scripts/export-types.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devvmh/redux-crud-store.git"
},
"homepage": "https://github.com/devvmh/redux-crud-store",
"keywords": [
"redux",
"crud",
"SPA",
"backbone",
"cache",
"models",
"store"
],
"tonicExampleFilename": "docs/runkitExample.js",
"author": "Devin Howard <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.5.0",
"cross-env": "^1.0.7",
"deep-freeze": "0.0.1",
"eslint": "2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-flowtype": "^2.2.7",
"eslint-plugin-import": "1.7.0",
"eslint-plugin-jsx-a11y": "1.2.2",
"eslint-plugin-react": "^5.0.1",
"estraverse-fb": "^1.3.1",
"expect": "^1.16.0",
"flow-bin": "^0.25.0",
"mocha": "^2.2.5",
"nyc": "^10.3.2",
"recursive-copy": "^2.0.5",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"dependencies": {
"babel-plugin-transform-regenerator": "^6.24.1",
"lodash.isequal": "^4.1.2",
"redux-saga": ">= 0.10.0"
}
}