-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "backrest",
"version": "0.11.1",
"description": "Rails like Node framework to create simple, pure backend APIs.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preversion": "# Run tests before updating version",
"version": "./bin/update-version.js && git add -A",
"postversion": ""
},
"bin": {
"backrest": "bin/backrest.js"
},
"author": "Noah Passalcqua",
"license": "MIT",
"homepage": "https://github.com/passabilities/backrest#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/passabilities/backrest.git"
},
"bugs": {
"url": "https://github.com/passabilities/backrest/issues"
},
"keywords": [
"nodejs",
"framework",
"restful-api",
"backend",
"backend-apis"
],
"dependencies": {
"body-parser": "^1.18.3",
"commander": "^2.15.1",
"cookie-parser": "^1.4.3",
"dd-trace": "^0.13.1",
"express": "^4.16.4",
"forever": "^0.15.3",
"glob": "^7.1.2",
"handlebars": "^4.1.1",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"nodemon": "^1.18.10",
"useragent": "^2.1.13"
}
}