-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "redux-uncaught-promise",
"version": "0.0.2",
"description": "Handle uncaught promises returned from dispatch",
"keywords": [
"dispatch",
"laat",
"onerror",
"promise",
"redux"
],
"license": "MIT",
"author": {
"name": "Sigurd Fosseng",
"email": "sigurd@fosseng.net",
"url": "https://github.com/laat"
},
"files": [
"lib",
"*.js"
],
"main": "lib/index.js",
"repository": "laat/redux-uncaught-promise",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel -d lib --ignore *test.js src",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm-run-all lint test:*",
"test:tape": "tape -r babel-register 'src/**/*test.js'"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"eslint": "^2.10.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"npm-run-all": "^2.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"tape": "^4.5.1"
},
"engines": {
"node": ">=4"
}
}