-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 3.25 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
{
"name": "redux-tide",
"description": "tiny factory for redux crud normalize",
"version": "0.1.4",
"main": "./lib/index.js",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/edtoken/redux-tide.git"
},
"keywords": [
"redux",
"react",
"flux",
"crud",
"redux crud",
"redux ajax",
"ajax",
"normalizr",
"redux immutable",
"redux normalizr"
],
"author": "Eduard Titov <editied@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/edtoken/redux-tide/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/edtoken/redux-tide/issues"
},
"scripts": {
"clean": "rimraf lib",
"build": "./node_modules/.bin/babel --presets es2015 -d lib src",
"build:watch": "./node_modules/.bin/babel --watch --presets es2015 -d lib src",
"lint": "eslint src test ",
"lint:fix": "eslint src test --fix",
"lint:fix:test": "npm run lint:fix && npm run test",
"lint:fix:website": "eslint src test website/src website/public --fix",
"test": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "cross-env NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "cross-env NODE_ENV=test babel-node ./node_modules/.bin/isparta cover _mocha -- --compilers js:babel-core/register --recursive",
"test:fix:cov": "npm run lint:fix && npm run test:cov",
"test:fix:cov:open": "npm run test:fix:cov && open ./coverage/lcov-report/index.html",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"docs": "jsdoc -c jsdoc.json -p ./src -r ./README.md",
"docs:open": "npm run docs && open docs/index.html",
"cov:open": "open coverage/lcov-report/index.html",
"predeploy": "npm run lint && npm run test:cov && npm run build && npm run docs && cd ./website && npm run build && cd ../ && cp -R ./coverage ./website/build/coverage && cp -R ./docs ./website/build/docs",
"deploy": "gh-pages -d website/build",
"postdeploy": "npm publish"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"react-redux": "^4.0.0 || ^5.0.0",
"redux": "^3.5.2",
"normalizr": "^3.2.4"
},
"dependencies": {
"immutable": "^3.8.2",
"normalizr": "^3.2.4",
"reselect": "^3.0.1"
},
"devDependencies": {
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-jsdoc": "^3.3.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react-app": "^1.0.2",
"gh-pages": "^1.1.0",
"isparta": "^4.0.0",
"jsdoc": "^3.5.5",
"json-server": "^0.12.1",
"minami": "^1.2.3",
"mocha": "^4.1.0",
"prettier": "^1.9.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"redux-thunk": "^2.2.0",
"should": "^13.2.0",
"should-sinon": "0.0.6",
"sinon": "^4.1.4"
}
}