-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "astraea",
"version": "1.3.5",
"description": "help developer output the typescript interfaces of api by swagger or json",
"keywords": [
"swagger",
"typescript",
"sw2ts",
"swagger2dts",
"interfaces",
"route-interface",
"route-ts",
"ts",
"api-interface",
"api-route",
"api"
],
"main": "index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"test": "rm -rf ./example && node test/json.js && node ./test/swagger.js",
"tsc": "npm run tsc:ts && npm run tsc:js",
"tsc:ts": "tsc -p ./ --outDir lib/ --declaration ",
"tsc:js": "tsc -p ./ --outDir lib/ --allowJS ",
"lint:ts": "tslint -p .",
"preversion": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShanaMaid/Astraea.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShanaMaid/Astraea/issues"
},
"homepage": "https://github.com/ShanaMaid/Astraea#readme",
"dependencies": {
"@types/fs-extra": "^5.0.5",
"@types/node": "^11.15.14",
"@types/underscore": "^1.8.9",
"fs-extra": "^7.0.1",
"swagmock": "^1.0.0",
"tslib": "2.0.0",
"typescript": "^3.3.3333",
"underscore": "^1.9.1"
},
"devDependencies": {
"tslint": "^5.13.0"
}
}