-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "redux-action-generators",
"version": "2.0.1",
"description": "Simple like redux-thunk but better",
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.js",
"directories": {
"example": "./examples"
},
"scripts": {
"clean": "rimraf lib dist",
"test": "jest",
"lint": "eslint ./src --fix",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"publish:prepare": "rimraf -rf webpack.config.js examples/ .gitignore .idea",
"publish:go": "npm i && npm run clean && npm run build && npm run publish:prepare && npm publish"
},
"lint-staged": {
"*.{js}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tuch/redux-action-generators.git"
},
"author": "Alex Afonin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tuch/redux-action-generators/issues"
},
"homepage": "https://github.com/Tuch/redux-action-generators#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"uninstall": "0.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"is-generator": "^1.0.3"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"notify": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/",
"/es/",
"/examples/",
"/lib/"
]
}
}