-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.41 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
{
"name": "git-hooks-list",
"version": "3.1.0",
"description": "List of Git hooks",
"keywords": [
"git",
"hooks",
"list"
],
"homepage": "https://github.com/fisker/git-hooks-list#readme",
"bugs": {
"url": "https://github.com/fisker/git-hooks-list/issues"
},
"repository": "fisker/git-hooks-list",
"funding": "https://github.com/fisker/git-hooks-list?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
"require": "./index.json",
"default": "./index.js"
},
"main": "index.json",
"jsdelivr": "index.json",
"unpkg": "index.json",
"browser": "index.json",
"files": [
"index.json",
"index.js"
],
"scripts": {
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "np --yolo --no-yarn",
"format": "run-p \"format:*\"",
"format:eslint": "yarn lint:eslint --fix",
"format:markdown": "markdownlint-cli2 --fix",
"format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"format:prettier": "yarn lint:prettier --write",
"lint": "run-p \"lint:*\"",
"lint:eslint": "eslint \"**/*.{js,jsx,mjs,cjs,vue}\"",
"lint:markdown": "markdownlint-cli2",
"lint:package-json": "yarn run format:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky install",
"release": "run-s lint test format dist",
"test": "ava",
"test-coverage": "nyc yarn test",
"update": "node scripts/update.js"
},
"ava": {
"verbose": true
},
"nyc": {
"reporter": [
"text",
"lcov"
]
},
"devDependencies": {
"@fisker/eslint-config": "12.1.0",
"@fisker/husky-config": "4.1.3",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.1.1",
"ava": "6.1.1",
"cheerio": "1.0.0-rc.12",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"markdownlint-cli2": "0.12.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"prettier": "3.2.5",
"sort-package-json": "2.8.0",
"write-prettier-file": "3.0.3"
},
"packageManager": "yarn@3.4.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}