-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (51 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
51
52
53
54
55
{
"name": "swagger-analyzer",
"description": "Analyzes swagger (OpenAPI) definitions",
"version": "0.0.1",
"main": "dist/index.js",
"keywords": [
"typescript",
"swagger",
"OpenAPI"
],
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc -p . -w",
"test": "npm run build && mocha",
"test:watch": "npm run build && concurrent -k \"tsc -p . -w\" \"mocha -w\"",
"clean": "rimraf dist/**/*",
"clean-build": "npm run clean && npm run build",
"coverage": "gulp coverage",
"doc": "doctoc .",
"patch": "npm run clean-build && gulp tag",
"feature": "npm run clean-build && gulp tag --minor",
"release": "npm run clean-build && gulp tag --major",
"prepublish": "npm run clean-build"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "Ihor Chulinda <[email protected]>",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"swagger.d.ts": "^0.1.0",
"@types/node": "latest",
"@types/chai": "latest",
"@types/mocha": "latest",
"typescript": "latest",
"tslint": "latest",
"mocha": "^2.5.3",
"chai": "^3.5.0",
"rimraf": "^2.5.4",
"concurrently": "^2.2.0",
"doctoc": "^1.2.0",
"gulp": "^3.9.1",
"gulp-release-tasks": "^0.0.3"
},
"repository": {
"type": "git",
"url": "[email protected]:Igmat/swagger-analyzer.git"
}
}