forked from apigee-127/swagger-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "swagger-converter",
"version": "1.4.1",
"description": "Converts Swagger documents from version 1.x to version 2.0",
"main": "index.js",
"scripts": {
"test": "mocha",
"istanbul": "istanbul cover --report lcovonly _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"pretest": "npm run build",
"browserify": "browserify index.js -s SwaggerConverter --outfile browser.js",
"preuglify": "npm run browserify",
"uglify": "uglifyjs browser.js > browser.min.js",
"build": "npm run uglify",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/apigee-127/swagger-converter.git"
},
"keywords": [
"Swagger",
"converter",
"API"
],
"author": "Mohsen Azimi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apigee-127/swagger-converter/issues"
},
"homepage": "https://github.com/apigee-127/swagger-converter",
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"deep-sort-object": "^1.0.1",
"istanbul": "^0.4.0",
"jscs": "^2.5.1",
"mocha": "^2.3.3",
"mocha-jscs": "^4.0.0",
"mocha-jshint": "^2.2.5",
"seamless-immutable": "^5.0.1",
"sway": "^0.6.0",
"uglify-js": "^2.6.0"
},
"dependencies": {
"common-prefix": "^1.1.0",
"urijs": "^1.16.1"
}
}