-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 875 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 875 Bytes
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
{
"name": "apone",
"version": "1.1.0",
"description": "Configure and validate express routes with objects. Register routes in any order. Extend as necessary.",
"main": "./lib/index.js",
"scripts": {
"test": "tap ./test/*.spec.js --100",
"lint": "node_modules/eslint/bin/eslint.js --config ./.eslintrc.json ./lib ./test",
"build": "npm run lint && npm test"
},
"keywords": [
"express"
],
"author": "collin.yablon@protectwise.com",
"contributors": [
"jonathan.nicholson@protectwise.com"
],
"license": "MIT",
"dependencies": {
"joi": "^10.4.1"
},
"devDependencies": {
"body-parser": "^1.17.2",
"eslint": "^4.3.0",
"eslint-plugin-hapi": "^4.0.0",
"express": "^4.15.2",
"got": "^6.7.1",
"tap": "^10.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/protectwise/apone"
}
}