-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
56
57
58
59
60
61
62
63
{
"name": "muskrat",
"version": "0.0.4",
"description": "Api spec generator",
"main": "dist/cli.js",
"scripts": {
"test": "nyc mocha --exit",
"build": "rimraf ./dist/ && tsc",
"lint": "tslint -c tslint.json 'lib/**/*.ts'"
},
"author": "Igor Ognichenko",
"license": "MIT",
"dependencies": {
"@types/doctrine": "^0.0.3",
"commander": "^2.16.0",
"config": "^1.30.0",
"deepmerge": "^2.1.1",
"doctrine": "^2.1.0",
"events": "^3.0.0",
"json-schema": "^0.2.3",
"lodash": "^4.17.10",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"typescript": "^2.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-json-schema": "^1.4.3",
"@types/config": "^0.0.34",
"@types/cors": "^2.8.4",
"@types/deepmerge": "^2.1.0",
"@types/express": "^4.16.0",
"@types/glob": "^5.0.35",
"@types/json-schema": "^6.0.1",
"@types/lodash": "^4.14.112",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"chai-json-schema": "^1.5.0",
"class-validator": "^0.9.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"glob": "^7.1.2",
"minimatch": "^3.0.4",
"mocha": "^5.2.0",
"mochawesome": "^3.0.2",
"nyc": "^12.0.2",
"routing-controllers": "^0.7.7",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typedi": "^0.8.0"
},
"nyc": {
"include": [
"**/lib/**"
],
"reporter": [
"text-summary",
"html"
]
}
}