forked from swagger-api/swagger-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1022 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
47
48
49
{
"name": "swagger-node-express",
"version": "2.1.0",
"author": {
"name": "Tony Tam",
"email": "fehguy@gmail.com",
"url": "http://developer.wordnik.com"
},
"contributors": [
{
"name": "Pauh Hill",
"email": "phill@kixeye.com"
}
],
"description": "Wordnik swagger implementation for the express framework",
"repository": {
"type": "git",
"url": "https://github.com/wordnik/swagger-node-express"
},
"keywords": [
"http",
"rest",
"swagger",
"server"
],
"main": "index.js",
"engines": {
"node": ">= 0.8.x"
},
"dependencies": {
"lodash": "1.3.1"
},
"devDependencies": {
"express": "3.x",
"docco": "0.4.x",
"cors": "2.1.1",
"mocha": "~1.20.0",
"should": "~4.0.0",
"once": "~1.3.0",
"request": "~2.36.0",
"jshint": "~2.3.0"
},
"license": "apache 2.0",
"scripts": {
"pretest": "jshint lib",
"test": "mocha -r should './test/**/*.js'",
"start": "node sample-application/app.js"
}
}