-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "redux-async-generator",
"version": "1.0.0",
"description": "Redux async actions and reducers generator",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"es",
"lib"
],
"scripts": {
"lint": "eslint src",
"clean": "rimraf es lib",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run clean && npm run build:cjs && npm run build:es",
"precommit": "lint-staged",
"prepare": "npm run build",
"prerelease": "npm run prepare",
"release:patch": "npm run prerelease && npm version patch && npm publish && git push --follow-tags",
"release:minor": "npm run prerelease && npm version minor && npm publish && git push --follow-tags",
"release:major": "npm run prerelease && npm version major && npm publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uruit/redux-async-generator.git"
},
"keywords": [
"javascript",
"redux",
"async",
"generator"
],
"author": "UruIT (https://github.com/uruit)",
"contributors": [
"Rodrigo Rivera <rrivem@gmail.com> (https://github.com/rrivem)",
"Bruno Hartmann <brhartmann90@gmail.com> (https://github.com/brunohartmann)",
"Milton Rodriguez (https://github.com/rodriguezmilton)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/uruit/redux-async-generator/issues"
},
"dependencies": {
"merge": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.21.0",
"babel-eslint": "^6.0.3",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"cross-env": "^1.0.8",
"eslint": "^2.8.0",
"husky": "^0.13.3",
"lint-staged": "^3.4.2",
"prettier": "^1.4.1",
"redux": "^3.5.1",
"rimraf": "^2.4.3"
}
}