forked from TypeStrong/grunt-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.59 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
{
"author": "basarat",
"name": "grunt-ts",
"description": "Compile and manage your TypeScript project",
"version": "1.12.1",
"homepage": "https://github.com/grunt-ts/grunt-ts",
"repository": {
"type": "git",
"url": "git@github.com:grunt-ts/grunt-ts.git"
},
"bugs": {
"url": "https://github.com/grunt-ts/grunt-ts/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/grunt-ts/grunt-ts/blob/master/LICENSE"
}
],
"main": "grunt.js",
"maintainers": [
{
"name": "basarat",
"email": "basaratali@gmail.com"
},
{
"name": "jeffmay",
"email": "viralidealogue@gmail.com"
},
{
"name": "bartvds",
"email": "bartvanderschoor@gmail.com"
}
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"typescript": "1.0.1",
"chokidar": "0.8.2",
"underscore": "1.5.1",
"underscore.string": "2.3.3",
"es6-promise": "~0.1.1",
"rimraf": "2.2.6",
"ncp": "0.5.1"
},
"peerDependencies": {
"grunt": "~0.4.0"
},
"devDependencies": {
"grunt": "~0.4.0",
"grunt-continue": "0.0.1",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-nodeunit": "~0.2.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-debug-task": "^0.1.4",
"grunt-tslint": "~0.4.0",
"jshint-path-reporter": "~0.1.3",
"source-map-support": "~0.2.5",
"tslint-path-formatter": "~0.1.1"
},
"optionalDependencies": {},
"keywords": [
"gruntplugin",
"typescript",
"compiler"
]
}