forked from ngx-rocket/generator-ngx-rocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·108 lines (108 loc) · 2.57 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "generator-ngx-rocket",
"version": "8.0.1",
"description": "Extensible Angular 9+ 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": {
"commit": "git-cz",
"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",
"release:check": "semantic-release --dry-run"
},
"dependencies": {
"@ngx-rocket/ascii-logo": "^1.0.1",
"@ngx-rocket/core": "^5.0.2",
"chalk": "^3.0.0",
"conf": "^6.2.1",
"cross-spawn": "^7.0.1",
"figures": "^3.2.0",
"fs-extra": "^9.0.0",
"fuzz-run": "^1.0.2",
"inquirer": "^7.1.0",
"insight": "^0.10.3",
"lodash.camelcase": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.upperfirst": "^4.3.1",
"minimist": "^1.2.5",
"replace-in-file": "^5.0.2",
"semver": "^7.1.3",
"update-notifier": "^4.1.0",
"yeoman-environment": "^2.8.1"
},
"devDependencies": {
"@jedmao/semantic-release-npm-github-config": "^1.0.9",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"semantic-release": "^17.0.4",
"xo": "^0.28.1"
},
"engines": {
"node": ">=10.9.0",
"npm": ">=5.2"
},
"xo": {
"space": true,
"prettier": true
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"extends": "@jedmao/semantic-release-npm-github-config",
"tagFormat": "${version}",
"branch": "master"
},
"files": [
"generators",
"cli"
]
}