forked from horiuchi/dtsgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.96 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.96 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "dtsgenerator",
"version": "2.3.0",
"description": "TypeScript d.ts file generator for JSON Schema file",
"bin": {
"dtsgen": "./bin/dtsgen"
},
"main": "dist/core/",
"typings": "dist/core/index.d.ts",
"scripts": {
"clean": "rimraf dist/ {src,test}/**/*.{js,js.map}",
"build": "tsc -p ./tsconfig-build.json",
"prepublishOnly": "npm run build",
"lint": "tslint --project ./tsconfig.json",
"precompile": "npm run lint",
"compile": "tsc -p .",
"watch": "npm run compile -- -w",
"pretest": "npm run compile",
"test": "istanbul cover _mocha test/*.js test/**/*.js",
"posttest": "remap-istanbul --input coverage/coverage.json -o coverage/report -t html",
"coverage": "remap-istanbul --input coverage/coverage.json --type text-lcov | coveralls",
"test:update-snapshot": "UPDATE_SNAPSHOT=1 npm run test"
},
"directories": {
"test": "test/"
},
"keywords": [
"TypeScript",
"JSON Schema",
"OpenAPI"
],
"author": "horiuchi",
"license": "MIT",
"homepage": "https://github.com/horiuchi/dtsgenerator",
"repository": {
"type": "git",
"url": "git@github.com:horiuchi/dtsgenerator.git"
},
"bugs": {
"url": "https://github.com/horiuchi/dtsgenerator/issues"
},
"engines": {
"node": ">= 6.0"
},
"dependencies": {
"commander": "^3.0.0",
"cross-fetch": "^3.0.4",
"debug": "^4.1.1",
"glob": "^7.1.4",
"js-yaml": "^3.13.1",
"mkdirp": "^0.5.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.1",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/power-assert": "^1.5.0",
"coveralls": "^3.0.6",
"istanbul": "^0.4.5",
"mocha": "^6.2.0",
"power-assert": "^1.6.1",
"remap-istanbul": "^0.13.0",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.13",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}