forked from gilamran/grunt-typescript-using-tsconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "grunt-typescript-using-tsconfig",
"version": "0.7.1",
"description": "A Grunt task that compiles typescript projects using the tsconfig, with support for filesGlob",
"main": "Gruntfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:gilamran/grunt-typescript-using-tsconfig.git"
},
"keywords": [
"gruntplugin",
"typescript",
"tsc",
"tsconfig"
],
"author": "Gil Amran",
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "~0.4.1",
"grunt-debug-task": "^0.1.5",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "~0.3.0"
},
"dependencies": {
"chalk": "^1.1.0",
"tsconfig-glob": "^0.1.3",
"typescript": "^1.5.3"
},
"bugs": {
"url": "https://github.com/gilamran/grunt-typescript-using-tsconfig/issues"
},
"homepage": "https://github.com/gilamran/grunt-typescript-using-tsconfig#readme"
}