forked from borlip/ts-vscode-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "ts-vscode-boilerplate",
"version": "1.0.0",
"description": "Visual Studio Code TypeScript boilerplate",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp lint && gulp build && gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remojansen/ts-vscode-boilerplate.git"
},
"author": "Remo H. Jansen <[email protected]> (http://www.remojansen.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/remojansen/ts-vscode-boilerplate/issues"
},
"homepage": "https://github.com/remojansen/ts-vscode-boilerplate#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/jquery": "^2.0.33",
"@types/mocha": "^2.2.32",
"browser-sync": "^2.17.3",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^2.1.1",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.1",
"gulp-uglify": "^2.0.0",
"run-sequence": "^1.2.2",
"tslint": "4.0.2",
"typescript": "^2.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"wallabify": "0.0.14"
},
"dependencies": {
"jquery": "^3.1.1"
}
}