forked from ngx-rocket/generator-ngx-rocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·91 lines (91 loc) · 2.24 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "generator-ngx-rocket",
"version": "7.1.0",
"description": "Extensible Angular 8+ enterprise-grade project generator based on angular-cli with best practices from the community. Includes PWA/Cordova/Electron support, coding guides and more!",
"repository": {
"type": "git",
"url": "https://github.com/ngx-rocket/generator-ngx-rocket.git"
},
"keywords": [
"yeoman-generator",
"ngx",
"rocket",
"app",
"addon",
"generator",
"angular",
"angular-cli",
"bootstrap",
"ionic",
"material",
"scalable",
"enterprise",
"scaffold",
"boilerplate",
"seed",
"typescript",
"sass",
"cordova",
"mobile",
"web",
"pwa",
"electron",
"tool",
"cli"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"homepage": "https://github.com/ngx-rocket/generator-ngx-rocket",
"bugs": {
"url": "https://github.com/ngx-rocket/generator-ngx-rocket/issues"
},
"preferGlobal": true,
"main": "./generators/app/index.js",
"bin": {
"ngx": "./cli/bin/ngx"
},
"scripts": {
"lint": "xo \"generators/*/*.js\" \"cli/*.js\"",
"lint:fix": "npm run lint -s -- --fix",
"test": "npm run lint -s && ./scripts/test.sh",
"test:addon": "npm run lint -s && TEST_ADDON=1 ./scripts/test.sh",
"deploy": "scripts/deploy.sh",
"postpublish": "git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -m 'Update changelog'"
},
"dependencies": {
"@ngx-rocket/ascii-logo": "^1.0.1",
"@ngx-rocket/core": "^5.0.1",
"chalk": "^2.4.2",
"conf": "^5.0.0",
"cross-spawn": "^7.0.0",
"figures": "^3.0.0",
"fuzz-run": "^1.0.2",
"inquirer": "^7.0.0",
"insight": "^0.10.3",
"lodash.camelcase": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.upperfirst": "^4.3.1",
"minimist": "^1.2.0",
"semver": "^6.3.0",
"update-notifier": "^3.0.1",
"yeoman-environment": "^2.4.0"
},
"devDependencies": {
"xo": "^0.24.0"
},
"engines": {
"node": ">=10.9.0"
},
"xo": {
"space": true,
"prettier": true
},
"files": [
"generators",
"cli"
]
}