-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
47 lines (47 loc) · 1 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
{
"author": "kazuhide maruyama",
"name": "grunt-typescript",
"description": "compile typescript to javascript",
"version": "0.8.0",
"homepage": "https://github.com/k-maru/grunt-typescript",
"repository": {
"type": "git",
"url": "[email protected]:k-maru/grunt-typescript.git"
},
"bugs": {
"url": "https://github.com/k-maru/grunt-typescript/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/k-maru/grunt-typescript/blob/master/LICENSE"
}
],
"main": "Gruntfile.js",
"scripts": {
"start": "grunt build",
"test": "grunt test"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"typescript": "1.6.2",
"bluebird": "~2.9.34",
"chokidar": "^1.0.5"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-clean": "~0.6.0"
},
"optionalDependencies": {
},
"keywords": [
"gruntplugin",
"typescript"
]
}