forked from scriptoLLC/take-five
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 960 Bytes
/
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
{
"name": "take-five",
"version": "1.3.0",
"description": "Very minimal JSON-REST server",
"main": "take-five.js",
"scripts": {
"dep": "dependency-check . && dependency-check . --unused --no-dev",
"test": "standard && npm run dep && tap test/*.spec.js",
"coverage": "tap --cov --coverage-report lcov test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptollc/take-five.git"
},
"keywords": [
"REST",
"JSON",
"API",
"Restify",
"Express",
"Hapi"
],
"author": "Todd Kennedy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scriptollc/take-five/issues"
},
"homepage": "https://github.com/scriptollc/take-five#readme",
"dependencies": {
"fast-safe-stringify": "^1.0.9",
"wayfarer": "^6.1.5"
},
"devDependencies": {
"dependency-check": "^2.6.0",
"standard": "^7.1.2",
"tap": "^6.2.0"
}
}