-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "raml-js-validator",
"version": "0.5.1",
"description": "Simple RAML 1.0 validator that reads an API definition and performs a query checking the correctness of the response",
"bin": {
"raml-validate": "bin/raml-validate.js"
},
"main": "bin/raml-validate.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joanvila/raml-js-validator.git"
},
"keywords": [
"raml",
"api",
"validation",
"test"
],
"author": "Joan Vila <vila.joan94@gmail.com> (http://joanvila.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/joanvila/raml-js-validator/issues"
},
"homepage": "https://github.com/joanvila/raml-js-validator#readme",
"dependencies": {
"lodash": "^4.17.2",
"q": "^1.4.1",
"raml-1-parser": "^1.1.6",
"request": "^2.76.0",
"yargs": "^6.3.0"
},
"devDependencies": {
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"express": "^4.14.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-coveralls": "^1.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-shell": "^2.1.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}