-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
80 lines (80 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"author": "basarat",
"name": "grunt-ts",
"description": "Compile and manage your TypeScript project",
"version": "6.0.0-beta.22",
"homepage": "https://github.com/TypeStrong/grunt-ts",
"repository": {
"type": "git",
"url": "[email protected]:TypeStrong/grunt-ts.git"
},
"bugs": {
"url": "https://github.com/TypeStrong/grunt-ts/issues"
},
"license": "MIT",
"main": "tasks/ts.js",
"maintainers": [
{
"name": "nycdotnet",
"email": "[email protected]"
},
{
"name": "jeffmay",
"email": "[email protected]"
},
{
"name": "bartvds",
"email": "[email protected]"
},
{
"name": "basarat",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test --verbose --stack",
"watch": "tsc -p . -w"
},
"dependencies": {
"chokidar": "^2.0.4",
"csproj2ts": "^1.1.0",
"detect-indent": "^4.0.0",
"detect-newline": "^2.1.0",
"es6-promise": "~0.1.1",
"jsmin2": "^1.2.1",
"lodash": "~4.17.10",
"ncp": "0.5.1",
"rimraf": "2.2.6",
"semver": "^5.3.0",
"strip-bom": "^2.0.0"
},
"peerDependencies": {
"grunt": "^1.0.0 || ^0.4.0",
"typescript": ">=1"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-continue": "0.1.0",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-tslint": "4.0.1",
"jshint-path-reporter": "~0.1.3",
"tslint": "4.3.1",
"typescript": "^2.9.2"
},
"optionalDependencies": {},
"keywords": [
"grunt",
"gruntplugin",
"typescript",
"compiler",
"task",
"visualstudio",
"build"
]
}