-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
43 lines (43 loc) · 965 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.4.1",
"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": "ospatil@gmail.com",
"url": "https://github.com/ospatil"
},
"scripts": {
"pretest": "eslint .",
"test": "mocha"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"typescript",
"nodejs"
],
"dependencies": {
"chalk": "^2.4.1",
"lodash": "^4.17.11",
"shelljs": "^0.8.3",
"yeoman-generator": "^1.1.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"eslint": "^5.10.0",
"fs-extra": "^7.0.1",
"mocha": "^5.2.0",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"preferGlobal": true,
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}