-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 1.66 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
{
"name": "@ngx-rocket/scripts",
"version": "5.2.3",
"description": "Support scripts for ngX-Rocket projects",
"repository": "ngx-rocket/scripts",
"main": "index.js",
"bin": {
"ngx-scripts": "./bin/ngx-scripts"
},
"scripts": {
"lint": "xo \"*.js\" \"bin/*.js\"",
"lint:fix": "npm run lint -s -- --fix",
"test": "npm run lint -s",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"ngx",
"rocket",
"angular",
"cli",
"enterprise",
"tool",
"support",
"scripts",
"project"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"homepage": "https://github.com/ngx-rocket/scripts",
"bugs": {
"url": "https://github.com/ngx-rocket/scripts/issues"
},
"dependencies": {
"@ngx-rocket/ascii-logo": "^1.1.0",
"chalk": "^4.1.0",
"fs-extra": "^10.0.0",
"lodash.get": "^4.4.2",
"minimist": "^1.2.5"
},
"devDependencies": {
"semantic-release": "^19.0.2",
"semantic-release-npm-github": "^3.0.0",
"xo": "^0.53.1"
},
"engines": {
"node": ">=14.0.0"
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"unicorn/no-array-reduce": "off",
"unicorn/prefer-module": "off",
"unicorn/no-array-for-each": "off",
"unicorn/prefer-object-from-entries": "off",
"complexity": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/switch-case-braces": "off"
}
},
"prettier": {
"trailingComma": "none"
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"files": [
"index.js",
"bin",
"hooks"
]
}