-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
100 lines (100 loc) · 2.38 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "gulp-typescript",
"version": "6.0.0-alpha.1",
"description": "A typescript compiler for gulp with incremental compilation support.",
"homepage": "https://github.com/ivogabe/gulp-typescript",
"bugs": "https://github.com/ivogabe/gulp-typescript/issues",
"license": "MIT",
"keywords": [
"typescript",
"gulpplugin",
"incremental compilation",
"ts",
"tsc",
"compile",
"compiler",
"transpile"
],
"author": {
"name": "Ivo Gabe de Wolff",
"url": "http://ivogabe.com/"
},
"contributors": [
{
"name": "Jesper Jonsson",
"email": "jesper.m.jonsson@gmail.com"
},
{
"name": "Shogo Iwano",
"email": "shiwano@gmail.com"
},
{
"name": "Martin Poelstra",
"email": "m.poelstra@spiritit.com"
},
{
"name": "Jakub Olek",
"email": "bukaj.kelo+github@gmail.com"
},
{
"name": "Ilan Frumer",
"email": "IlanFrumer@gmail.com"
},
{
"name": "James Whitney",
"email": "james@whitney.io"
},
{
"name": "Jaroslaw Zalucki",
"email": "mad.jaro@gmail.com"
},
{
"name": "Yui Tanglertsampan",
"email": "yuisu@microsoft.com"
},
{
"name": "Rogier Schouten",
"email": "github@workingcode.ninja"
}
],
"main": "release/main.js",
"types": "release/main.d.ts",
"typings": "release/main.d.ts",
"engines": {
"node": ">= 8"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"plugin-error": "^1.0.1",
"source-map": "^0.7.3",
"through2": "^3.0.1",
"vinyl-fs": "^3.0.3",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@types/node": "12.7.5",
"@types/plugin-error": "0.1.1",
"@types/through2": "2.0.34",
"@types/vinyl": "2.0.3",
"@types/vinyl-fs": "2.4.11",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-diff": "^1.0.0",
"gulp-header": "^2.0.9",
"gulp-plumber": "^1.2.1",
"gulp-sourcemaps": "^2.6.5",
"merge-stream": "^2.0.0",
"rimraf": "^3.0.0",
"typescript": "3.6.3"
},
"peerDependencies": {
"typescript": "~2.7.1 || >=2.8.0-dev || >=2.9.0-dev || ~3.0.0 || >=3.0.0-dev || >=3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev "
},
"scripts": {
"test": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/ivogabe/gulp-typescript.git"
}
}