-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.29 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
113
114
115
{
"name": "xaxa",
"description": "Zero-config linting, powered by few amazing unicorns, AirBnB & Prettier.",
"license": "Apache-2.0",
"licenseStart": "2018",
"scripts": {
"lint": "node cli.js",
"test": "nyc --require esm asia",
"gitadd": "git status --porcelain && git add -A",
"commit-dry": "yarn gitadd && gitcommit -sS",
"precommit": "yarn lint && yarn test && yarn gitadd",
"commit": "gitcommit -sS",
"prebuild": "rm -rf dist && mkdir dist",
"build": "ascjs src dist",
"prepublishOnly": "yarn build"
},
"engines": {
"node": "^8.9.0 || ^10.6.0",
"npm": ">=5.5",
"yarn": ">=1.5"
},
"dependencies": {
"arrayify": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-xaxa": "^1.0.3",
"esm": "^3.0.72",
"get-stdin": "^6.0.0",
"mri": "^1.1.1"
},
"devDependencies": {
"ascjs": "^2.4.0",
"asia": "^0.19.6",
"gitcommit": "^1.0.8",
"new-release": "^4.0.3",
"nyc": "^12.0.2"
},
"files": [
"src",
"dist",
"cli.js"
],
"bin": "cli.js",
"main": "dist/index.js",
"module": "src/index.js",
"version": "0.0.0-semantically-released",
"repository": "olstenlarck/xaxa",
"homepage": "https://github.com/olstenlarck/xaxa",
"author": "Charlike Mike Reagent (https://i.am.charlike.online)",
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "xaxa"
},
"renovate": {
"extends": "tunnckocore",
"packageRules": [
{
"packageNames": [
"eslint"
],
"allowedVersions": "< 5"
}
]
},
"nyc": {
"statements": 0,
"functions": 0,
"branches": 0,
"lines": 0,
"cache": true,
"check-coverage": true,
"reporter": [
"lcov",
"text"
],
"exclude": [
"test"
],
"extension": [
".js",
".jsx",
".mjs"
]
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3,
"footer": ""
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"asia",
"gitcommit",
"new-release",
"xaxa",
"charlike"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"new-release",
"semantic-release"
]
}
}