-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
47
48
{
"name": "generator-vscode-node-typescript",
"version": "1.0.0",
"description": "Yeoman generator for Node-TypeScript projects using Visual Studio Code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adstep/generator-vscode-node-typescript.git"
},
"keywords": [
"yeoman-generator",
"visual-studio-code",
"typescript"
],
"author": {
"name": "Adam Stephenson",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/adstep/generator-vscode-node-typescript/issues"
},
"homepage": "https://github.com/adstep/generator-vscode-node-typescript#readme",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.4",
"gulp-mocha": "^2.2.0",
"gulp-nsp": "^2.4.1",
"gulp-plumber": "^1.1.0",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"nsp": "^2.4.0",
"tslint": "^3.10.2",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.13.1",
"yeoman-generator": "^0.21.2",
"yosay": "^1.1.1"
}
}