forked from fisker/node-style-text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.52 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.52 KB
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
{
"name": "node-style-text",
"version": "2.1.2",
"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": "[email protected]",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"browser": "./browser.js",
"default": "./index.js"
},
"./eslint-config": "./eslint-config.js",
"./*": "./*"
},
"files": [
"index.js",
"browser.js",
"utilities.js",
"index.d.ts",
"eslint-config.js"
],
"scripts": {
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "release-it",
"fix": "run-p --continue-on-error \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:markdown": "yarn lint:markdown --fix",
"fix:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"fix:prettier": "prettier . --write",
"lint": "run-p --continue-on-error \"lint:*\"",
"lint:eslint": "eslint .",
"lint:markdown": "markdownlint-cli2",
"lint:package-json": "yarn run fix:package-json --check",
"lint:prettier": "prettier . --check",
"prepare": "husky install",
"release": "run-s fix test dist",
"test": "run-p test:js test:eslint test:types",
"test-coverage": "c8 yarn test",
"test:eslint": "node eslint-test.js",
"test:js": "node --test *.test.js",
"test:types": "tsd"
},
"c8": {
"include": [
"index.js"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@fisker/eslint-config": "15.2.0",
"@fisker/lint-staged-config": "3.3.5",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.2.0",
"@types/node": "24.7.2",
"c8": "10.1.3",
"del-cli": "7.0.0",
"eslint": "9.37.0",
"husky": "9.1.7",
"lint-staged": "16.2.4",
"markdownlint-cli2": "0.18.1",
"npm-run-all2": "8.0.4",
"outdent": "0.8.0",
"prettier": "3.6.2",
"release-it": "19.0.5",
"sort-package-json": "3.4.0",
"tsd": "0.33.0",
"typescript": "5.9.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}