-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "async-error-catcher",
"version": "1.0.1",
"description": "Catch errors from async express routes and pass them to error catcher middleware",
"main": "dist/index.js",
"scripts": {
"build": "babel src/ -d dist/",
"test": "ava",
"test-coverage": "nyc ava"
},
"keywords": [],
"author": "Andrew McDowell <[email protected]> (http://madole.github.io/)",
"license": "ISC",
"devDependencies": {
"ava": "^0.15.2",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"install": "^0.8.1",
"npm": "^3.9.5",
"nyc": "^6.4.4"
},
"ava": {
"files": [
"test/*.spec.js"
],
"source": [
"src/*.js",
"!dist/**/*"
],
"failFast": true,
"tap": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}