-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.74 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
{
"name": "async-actions",
"version": "0.0.1",
"description": "Async action creator.",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"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 src/index.js dist/async-actions.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/async-actions.min.js",
"check": "npm run lint && npm run test",
"clean": "rimraf lib dist es coverage",
"lint": "eslint src",
"prepublish": "npm run clean && npm run check && npm run build",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doordash/async-actions.git"
},
"author": "Alex Grover <alex.grover@doordash.com> (https://github.com/ajgrover)",
"license": "ISC",
"bugs": {
"url": "https://github.com/doordash/async-actions/issues"
},
"homepage": "https://github.com/doordash/async-actions#readme",
"dependencies": {
"query-string": "^4.1.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"rimraf": "^2.5.2",
"webpack": "^1.13.0"
}
}