-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
56 lines (56 loc) · 1.32 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
{
"name": "gulp-tsc",
"version": "0.9.2",
"author": "Kota Saito <[email protected]> (https://github.com/kotas)",
"copyright": "2014 Kota Saito",
"contributors": [
"Cai Lei (https://github.com/ccll)"
],
"description": "TypeScript compiler for gulp.js",
"license": "MIT",
"homepage": "https://github.com/kotas/gulp-tsc/",
"bugs": "https://github.com/kotas/gulp-tsc/issues",
"repository": {
"type": "git",
"url": "git://github.com/kotas/gulp-tsc.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha && ./node_modules/.bin/gulp --gulpfile test-e2e/gulpfile.js"
},
"keywords": [
"gulpplugin",
"typescript",
"gulp",
"tsc",
"compile",
"transpile",
"compiler"
],
"dependencies": {
"async": "^0.9.0",
"through2": "^1.0.0",
"gulp-util": "^2.2.16",
"which": "^1.0.5",
"byline": "^4.1.1",
"temp": "^0.8.0",
"vinyl-fs": "^0.3.4",
"rimraf": "^2.2.6",
"resolve": "^0.7.0",
"lodash": "^2.4.1"
},
"devDependencies": {
"gulp": "^3.5.5",
"gulp-clean": "^0.3.0",
"gulp-expect-file": "^0.0.7",
"run-sequence": "^0.3.6",
"should": "^4.0.1",
"mocha": "^1.20.1",
"sinon": "^1.9.0",
"event-stream": "^3.1.0",
"glob": "^4.0.0"
},
"optionalDependencies": {
"typescript": "^1.0.1"
}
}