-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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": "vscode-typescript-boilerplate",
"version": "1.2.1",
"description": "A project skeleton for TypeScript development in Visual Studio Code.",
"main": "build/app/app.js",
"scripts": {
"postinstall": "cd src && typings install",
"prebuild": "rimraf build",
"build": "tsc -p src/ || true",
"test": "mocha build/test --require source-map-support/register || true",
"clean": "rimraf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesleuth/vscode-typescript-boilerplate.git"
},
"keywords": [
"vscode",
"typescript",
"example",
"boilerplate",
"project",
"skeleton",
"debug",
"intellisense",
"compile",
"transpile"
],
"author": "David Wood <[email protected]> (http://www.codesleuth.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codesleuth/vscode-typescript-boilerplate/issues"
},
"homepage": "https://github.com/codesleuth/vscode-typescript-boilerplate#readme",
"private": true,
"devDependencies": {
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"typescript": "^1.8.10",
"typings": "^1.0.4"
},
"dependencies": {
"source-map-support": "^0.4.0"
}
}