-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@butlerlogic/common-api",
"version": "1.6.0",
"description": "An API engineering productivity kit for Express.",
"main": "index.js",
"scripts": {
"test": "npm run test:unit && npm run test:syntax",
"test:unit": "tap -R spec ./test/**/*.js",
"test:syntax": "standard --verbose | snazzy"
},
"repository": {
"type": "git",
"url": "https://github.com/butlerlogic/common-api.git"
},
"keywords": [
"api",
"common",
"utility",
"rest",
"express"
],
"author": "Corey Butler",
"license": "MIT",
"bugs": {
"url": "https://github.com/butlerlogic/common-api/issues"
},
"homepage": "https://github.com/butlerlogic/common-api#readme",
"devDependencies": {
"body-parser": "1.19.0",
"request": "2.88.0",
"shortbus": "1.2.8",
"snazzy": "8.0.0",
"standard": "12.0.1",
"tap": "^14.10.7",
"tape": "4.10.2"
},
"dependencies": {
"chalk": "2.4.2",
"musthave": "1.0.2",
"express": "^4.17.1"
},
"files": [
"index.js"
]
}