-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.07 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
{
"name": "node-style-text",
"version": "0.0.7",
"description": "Chainable `util.styleText()`.",
"homepage": "https://github.com/fisker/node-style-text#readme",
"bugs": {
"url": "https://github.com/fisker/node-style-text/issues"
},
"repository": "fisker/node-style-text",
"funding": "https://github.com/fisker/node-style-text?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"browser": "./browser.js",
"default": "./index.js"
},
"./*": "./*"
},
"files": [
"index.js",
"browser.js",
"index.d.ts"
],
"scripts": {
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "np --yolo --no-yarn",
"fix": "run-p \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:markdown": "markdownlint-cli2 --fix",
"fix:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"fix: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 fix:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky",
"test": "node --test test.js",
"test-coverage": "c8 yarn test"
},
"devDependencies": {
"@fisker/eslint-config": "13.1.3",
"@fisker/lint-staged-config": "3.3.2",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.1.1",
"c8": "10.1.3",
"del-cli": "6.0.0",
"esbuild": "0.25.0",
"eslint": "9.21.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"markdownlint-cli2": "0.17.2",
"npm-run-all2": "7.0.2",
"prettier": "3.5.2",
"sort-package-json": "2.14.0"
},
"packageManager": "yarn@4.2.2",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}