-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "swagger-validate",
"version": "0.1.7",
"description": "Detailed validation of objects against a given swagger spec",
"keywords": [
"swagger",
"api",
"validator",
"validation"
],
"main": "./src/index.js",
"devDependencies": {
"gulp": "^3.8.5",
"boilerplate-gulp": "^0.2.1"
},
"directories": {
"jsSrc": "./src",
"build": "./build",
"dist": "./dist",
"reports": "./reports",
"dev": "./dev",
"example": "./example"
},
"author": {
"name": "Ozan Turgut",
"email": "[email protected]",
"url": "http://ozan.io"
},
"scripts": {
"prepublish": "node ./node_modules/gulp/bin/gulp.js",
"test": "node ./node_modules/gulp/bin/gulp.js test",
"dev": "node ./node_modules/gulp/bin/gulp.js dev",
"dist": "node ./node_modules/gulp/bin/gulp.js"
},
"licenses": [
{
"type": "Apache License 2.0",
"url": "https://github.com/signalfx/swagger-validate/blob/master/LICENSE-APACHE2"
}
],
"repository": {
"type": "git",
"url": "git://github.com/signalfx/swagger-validate.git"
},
"bugs": {
"url": "https://github.com/signalfx/swagger-validate/issues"
},
"homepage": "https://github.com/signalfx/swagger-validate"
}