forked from microsoft/dts-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "dts-gen",
"version": "0.6.0",
"description": "TypeScript Definition File Generator",
"main": "bin/lib/index.js",
"bin": {
"dts-gen": "bin/lib/run.js"
},
"dependencies": {
"dts-dom": "latest",
"parse-git-config": "^1.1.1",
"typescript": "^3.5.1",
"yargs": "^4.8.1"
},
"devDependencies": {
"@types/mocha": "latest",
"@types/node": "latest",
"@types/parse-git-config": "^1.1.0",
"@types/yargs": "latest",
"ecurve": "1.0.5",
"jquery": "latest",
"lodash": "latest",
"mocha": "^3.0.2",
"react": "latest",
"tslint": "^5.1.0",
"webpack": "^1.13.1"
},
"keywords": [
"typescript"
],
"preferGlobal": true,
"scripts": {
"test": "mocha bin/tests/test.js",
"build": "tsc",
"build-browser": "tsc -p browser && webpack",
"lint": "tslint --project tsconfig.json --format stylish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/dts-gen.git"
},
"author": "Ryan Cavanaugh <[email protected]> (https://www.github.com/RyanCavanaugh)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Microsoft/dts-gen/issues"
},
"homepage": "https://github.com/Microsoft/dts-gen#readme",
"engines": {
"node": ">=6.0.0"
}
}