-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.13 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
{
"name": "express-promise-middleware",
"version": "1.0.3",
"description": "Write express middleware that wait on Promises before they respond or call next",
"main": "index.js",
"scripts": {
"test": "npm run lint && flow && npm run test:mocha",
"test:mocha": "mocha --require babel-polyfill --compilers js:babel-register src/**/test.js",
"lint": "eslint 'src/*.js'",
"build": "babel src -d . && flow-copy-source src .",
"prepublish": "npm run build"
},
"author": "Good Eggs <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"babel-register": "^6.23.0",
"eslint": "^3.15.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-goodeggs": "^3.4.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash": "^1.9.4",
"eslint-plugin-mocha": "^4.8.0",
"flow-bin": "^0.59.0",
"flow-copy-source": "^1.1.0",
"goodeggs-test-helpers": "^1.4.1",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015",
"es2016",
"es2017"
],
"plugins": [
"transform-flow-strip-types",
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"goodeggs",
"import",
"flowtype"
],
"extends": [
"plugin:goodeggs/goodeggs",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"no-eq-null": "off",
"lodash/prefer-is-nil": "off",
"lodash/prop-shorthand": "off",
"import/default": "off"
},
"env": {
"node": true
},
"settings": {
"import/resolver": {
"node": {
"moduleDirectory": [
"node_modules",
"."
]
}
}
}
},
"dependencies": {
"bluebird": "^3.4.7"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
}
}