-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 KB
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
{
"name": "layback",
"version": "0.0.1",
"description": "layback is a command-line tool for validating API documentation written in Swagger format against its backend implementation.",
"main": "lib/layback.js",
"preferGlobal": "true",
"bin": {
"layback": "bin/layback.js"
},
"scripts": {
"test": "grunt test",
"build": "grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/WebFlight/layback.git"
},
"keywords": [
"api",
"test",
"testing",
"documentation",
"acceptance",
"integration"
],
"author": "Kim Pellikaan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebFlight/layback/issues"
},
"homepage": "https://github.com/WebFlight/layback",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-complexity": "^0.3.0",
"grunt-coveralls": "^1.0.0",
"grunt-eslint": "^10.0.0",
"grunt-filenames": "^0.4.0",
"grunt-githooks": "^0.3.1",
"grunt-jscs": "^1.6.0",
"grunt-jsonlint": "^1.0.4",
"grunt-mocha-istanbul": "^2.3.1",
"grunt-mocha-test": "^0.12.7",
"istanbul": "^0.3.13",
"jscs": "^1.12.0",
"jscs-jsdoc": "^0.4.6",
"load-grunt-tasks": "^3.1.0",
"mocha": "^2.2.4",
"time-grunt": "^1.1.0",
"xunit-file": "0.0.6"
},
"dependencies": {
"commander": "^2.7.1"
}
}