-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "vulpes-api",
"version": "0.5.0",
"description": "API generator for the Vulpes job management framework",
"main": "source/index.js",
"scripts": {
"format": "prettier --write '{source,test}/**/*.js'",
"precommit": "lint-staged",
"test": "npm run test:api && npm run test:format",
"test:api": "mocha -r test/index.js 'test/api/**/*.spec.js'",
"test:api:watch": "nodemon --exec 'npm run test:api'",
"test:format": "prettier-check '{source,test}/**/*.js'"
},
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiosked/vulpes-api.git"
},
"keywords": [
"vulpes",
"job",
"api"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiosked/vulpes-api/issues"
},
"homepage": "https://github.com/Kiosked/vulpes-api#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express-promise-router": "^3.0.3",
"verror": "^1.10.0"
},
"devDependencies": {
"apidoc": "^0.17.7",
"chai": "^4.2.0",
"express": "^4.16.4",
"husky": "^1.3.1",
"jsdoc-to-markdown": "^4.0.1",
"lint-staged": "^8.1.5",
"mocha": "^6.0.2",
"ms": "^2.1.1",
"nodemon": "^1.18.10",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0",
"sinon": "^7.3.0",
"supertest": "^4.0.2",
"uuid": "^3.3.2",
"vulpes": "^0.33.0"
},
"peerDependencies": {
"express": "4.*",
"vulpes": ">= 0.33.0 < 1"
}
}