-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 967 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
39
40
41
42
43
44
45
46
{
"name": "booster",
"description": "Booster is the ***fastest*** way to get a full-fledged REST service up and running in [nodejs](http://nodejs.org)!",
"version": "2.2.1",
"url": "http://boosterjs.com",
"author": "Avi Deitcher <[email protected]>",
"engines": [
"node >= 0.10.0"
],
"license": "mit",
"keywords": [
"framework",
"restful",
"rest",
"REST",
"api",
"mvc",
"web-framework",
"express",
"api",
"models",
"controllers",
"validation"
],
"dependencies": {
"async": "0.2",
"body-parser": "^1.12.2",
"lodash": "^4.6.1",
"pluralize": "^1.2.1",
"searchjs": ">=0.3.5"
},
"devDependencies": {
"express": "4.x",
"mocha": "^3.2.0",
"should": "4.x",
"supertest": "0.x"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"main": "./lib/booster.js",
"repository": {
"type": "git",
"url": "http://github.com/deitch/booster.git"
}
}