forked from ospatil/generator-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 963 Bytes
/
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
{
"name": "generator-node-typescript",
"version": "4.2.0",
"description": "A minimal Yeoman Generator for creating NodeJS modules using TypeScript",
"license": "MIT",
"main": "app/index.js",
"repository": "ospatil/generator-node-typescript",
"author": {
"name": "Omkar Patil",
"email": "[email protected]",
"url": "https://github.com/ospatil"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"typescript",
"nodejs"
],
"dependencies": {
"chalk": "^2.0.1",
"lodash": "^4.17.4",
"shelljs": "^0.7.8",
"yeoman-generator": "^1.1.1",
"yosay": "^2.0.0"
},
"devDependencies": {
"eslint": "^4.4.0",
"fs-extra": "^4.0.0",
"mocha": "^3.4.2",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.7.0"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}