-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 KB
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
{
"name": "punky",
"version": "0.4.0",
"description": "Bootstrap your APIs taking advantage of the best community modules",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/dgaubert/punky.git"
},
"engines": {
"node": "6.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"benchmark": "node benchmark",
"coverage": "istanbul cover _mocha test/ -- --recursive -r test/setup",
"lint": "standard index.js \"lib/**/*.js\" \"test/**/*.js\"",
"pretest": "npm run lint",
"start": "node .",
"test": "mocha --recursive -r test/setup test/",
"test:watch": "npm run test -- -w",
"preversion": "npm test",
"version": "npm run benchmark && git add -A benchmark",
"postversion": "git push && git push --tags"
},
"keywords": [
"es6",
"express",
"bootstrap"
],
"author": "Daniel García Aubert <@dgaubert>",
"license": "BSD-3-Clause",
"dependencies": {
"bunyan": "1.8.4",
"express": "4.14.0",
"meow": "3.7.0",
"node-statsd": "0.1.1",
"node-uuid": "1.4.7",
"read-pkg-up": "1.0.1",
"response-time": "2.3.1"
},
"devDependencies": {
"istanbul": "0.4.4",
"mocha": "3.0.2",
"prepend-file": "1.3.1",
"sinon": "1.17.5",
"standard": "7.1.2"
},
"standard": {
"globals": [
"__source",
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}