-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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": "tortilla-api",
"version": "0.1.3",
"description": "Wrapper of restify and swaggerRestify for a quick and easy creation of REST API in node",
"main": "index.js",
"scripts": {
"start": "node example/start.js",
"lint": "eslint src index.js example || true",
"cover": "NODE_ENV=test istanbul cover _mocha",
"coveralls": "NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "NODE_ENV=test mocha --reporter dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jobando89/tortilla-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jobando89/tortilla-api/issues"
},
"homepage": "https://github.com/jobando89/tortilla-api#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.12.0",
"istanbul": "^1.1.0-alpha.1",
"logplease": "^1.2.14",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"proxyquire": "^1.8.0",
"sinon": "^4.1.2",
"sinon-chai": "^2.10.0",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2"
},
"dependencies": {
"bagpipe": "^0.3.5",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"busboy-body-parser": "^0.3.1",
"config": "^1.29.0",
"express": "^4.16.2",
"guid": "0.0.12",
"lodash": "^4.17.10",
"path": "^0.12.7",
"restify": "^6.3.4",
"stoppable": "^1.0.4",
"swagger-parser": "^4.0.1",
"swagger-restify-mw": "^0.7.0"
},
"keywords": [
"api",
"http",
"javascript",
"node",
"rest",
"restify",
"swagger"
]
}