-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathpackage.json
64 lines (64 loc) · 2.34 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
{
"name": "redux-api",
"version": "0.12.0",
"author": {
"name": "Efremov Alex",
"email": "[email protected]",
"url": "https://github.com/lexich"
},
"main": "lib/index.js",
"license": "MIT",
"description": "Flux REST API for redux infrastructure",
"repository": "http://github.com/lexich/redux-api",
"scripts": {
"test": "npm run eslint && npm run mocha && npm run yaspeller",
"yaspeller": "node_modules/.bin/yaspeller .",
"mocha": "node_modules/.bin/mocha --require @babel/register test/*_spec.js",
"build": "rm -rf dist lib && npm run browser-dev && npm run browser-min && npm run compile",
"cover": "./node_modules/.bin/nyc npm run mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"eslint": "node_modules/.bin/eslint src test examples/isomorphic/app examples/isomorphic/server.js",
"compile": "node_modules/.bin/babel src --out-dir lib --source-maps true",
"prettier": "prettier --write \"{src,test,examples/isomorphic/app}/**/*.{js,jsx}\"",
"browser-dev": "cross-env NODE_ENV=development node_modules/.bin/webpack",
"browser-min": "cross-env NODE_ENV=production node_modules/.bin/webpack",
"release": "node_modules/.bin/standard-version --no-verify && git push --follow-tags origin master; npm publish",
"precommit": "npm run prettier && npm test",
"prepush": "npm test && npm run build"
},
"dependencies": {
"fast-apply": "0.0.3",
"qs": "^6.9.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"babel-plugin-add-module-exports": "1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"chai": "4.2.0",
"coveralls": "3.0.9",
"cross-env": "7.0.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.18.3",
"husky": "4.2.3",
"lodash": "4.17.15",
"mocha": "7.0.1",
"nyc": "^15.0.0",
"prettier": "1.19.1",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"standard-version": "8.0.1",
"webpack": "4.41.6",
"webpack-cli": "^3.3.11",
"yaspeller": "6.0.2"
}
}