-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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": "@nugwagon/router",
"version": "0.0.1",
"description": "Opinionated wrapper around express router which takes care of a bit of boilerplate",
"main": "lib/index.js",
"scripts": {
"lint": "require-lint && standard --fix",
"test": "mocha && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nguyenchr/router.git"
},
"keywords": [
"router",
"express",
"strummer"
],
"author": "Chris Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/nguyenchr/router/issues"
},
"homepage": "https://github.com/nguyenchr/router#readme",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"require-lint": "^1.3.0",
"sinon": "^5.0.7",
"standard": "^11.0.1",
"supertest": "^3.1.0"
},
"standard": {
"globals": [
"describe",
"describe.only",
"it",
"it.only",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}