This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
64
{
"name": "dtsmake",
"version": "0.0.10",
"description": "TypeScript d.ts file generator from JavaScript files",
"main": "lib/dtsmake.js",
"bin": "bin/dtsmake",
"scripts": {
"test": "mocha --compilers ts:ts-node/register test/*.ts",
"testw": "mocha --compilers ts:ts-node/register test/*.ts -w",
"extest": "(cd example && npm install --save-dev ../ && node example.js)",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/ConquestArrow/dtsmake/"
},
"bugs": {
"url": "https://github.com/ConquestArrow/dtsmake/issues"
},
"engines": {
"npm": "2.x.x - 3.x.x"
},
"keywords": [
"TypeScript",
"JavaScript",
"generator"
],
"author": "ConquestArrow",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/clone": "^0.1.30",
"@types/commander": "^2.3.31",
"@types/empower": "^1.2.30",
"@types/gulp": "^3.8.32",
"@types/gulp-concat": "0.0.29",
"@types/gulp-typescript": "0.0.32",
"@types/mocha": "^2.2.33",
"@types/node": "^7.0.5",
"@types/power-assert": "^1.4.29",
"@types/power-assert-formatter": "^1.4.28",
"@types/sinon": "^1.16.33",
"espower-typescript": "^7.0.0",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.8.7",
"gulp-release-tasks": "0.0.3",
"gulp-todo": "^5.2.0",
"gulp-typescript": "^3.1.3",
"mocha": "^2.5.3",
"power-assert": "^1.4.1",
"sinon": "^1.17.4",
"ts-node": "^2.0.0",
"typescript": "^2.1.4",
"typescript-node": "^0.1.3",
"typescript-register": "^1.1.0",
"typescript-require": "^0.2.9-1"
},
"dependencies": {
"clone": "^2.1.0",
"commander": "^2.9.0",
"tern": "^0.21.0"
}
}