-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "express-exorcism",
"version": "0.1.2",
"description": "Express.js router wrapper for async routes",
"author": "Andrew G Kuznetsov <cav@cav.ru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cavinsmith/express-exorcism.git"
},
"homepage": "https://github.com/cavinsmith/express-exorcism",
"keywords": [
"express",
"promise",
"async",
"router",
"routes",
"promisify",
"asynchronous",
"wrapper",
"middleware",
"extension",
"plugin",
"catch",
"then",
"es6",
"es7"
],
"main": "src/express-exorcism.js",
"scripts": {
"test": "mocha",
"test_with_coverage": "nyc mocha -t 10000",
"lint": "eslint src",
"check_coverage": "nyc check-coverage --lines 50 --functions 40 --branches 10",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"engines": {
"node": ">=7.5.0"
},
"dependencies": {
"methods": "^1.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.0.1"
}
}