-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 1.74 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
{
"name": "@ngx-rocket/core",
"version": "7.0.5",
"description": "Core generator for creating ngX-Rocket add-ons",
"repository": "ngx-rocket/core",
"main": "lib",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "npm run lint -s && jest",
"toc": "doctoc README.md --title '## Table of Contents' --maxlevel 4",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"ngx",
"rocket",
"core",
"generator",
"yeoman",
"add-on"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"license": "MIT",
"homepage": "https://github.com/ngx-rocket/core",
"bugs": {
"url": "https://github.com/ngx-rocket/core/issues"
},
"dependencies": {
"chalk": "^4.1.0",
"ejs": "^3.1.5",
"ignore": "^5.1.8",
"lodash": "^4.17.20",
"node-dir": "^0.1.14",
"yeoman-generator": "^5.4.0"
},
"devDependencies": {
"doctoc": "^2.0.0",
"jest": "^29.3.1",
"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,
"envs": [
"node",
"jest"
],
"rules": {
"unicorn/prefer-default-parameters": "off",
"unicorn/prefer-module": "off",
"unicorn/no-array-for-each": "off",
"unicorn/prefer-spread": "off",
"max-params": "off",
"object-shorthand": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/switch-case-braces": "off"
}
},
"prettier": {
"trailingComma": "none"
},
"release": {
"extends": "semantic-release-npm-github",
"branches": [
"main"
]
},
"files": [
"lib/*.js",
"!lib/*.spec.js"
]
}