-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
112 lines (112 loc) · 2.22 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
109
110
111
112
{
"name": "create-ngx",
"version": "1.1.0",
"preferGlobal": true,
"description": "The fastest way to rocket start your Angular projects",
"repository": {
"type": "git",
"url": "https://github.com/ngx-rocket/create-ngx.git"
},
"homepage": "https://github.com/ngx-rocket/create-ngx",
"bugs": {
"url": "https://github.com/ngx-rocket/create-ngx/issues"
},
"keywords": [
"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",
"create"
],
"main": "index.js",
"bin": {
"create-ngx": "./bin/create-ngx.js"
},
"scripts": {
"commit": "git-cz",
"lint": "xo \"*.js\" \"bin/*.js\"",
"lint:fix": "npm run lint -s -- --fix",
"test": "npm run lint -s && ./scripts/test.sh",
"release:check": "semantic-release --dry-run"
},
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.3",
"minimist": "^1.2.5"
},
"devDependencies": {
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.2.1",
"semantic-release": "^18.0.1",
"semantic-release-npm-github": "^2.0.0",
"xo": "^0.47.0"
},
"engines": {
"node": ">=12.20.0",
"npm": ">=6"
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-push-push": "off",
"unicorn/prefer-spread": "off"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"files": [
"index.js",
"bin"
]
}