-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.86 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.86 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
{
"name": "@js-toolkit/utils",
"version": "1.62.1",
"description": "Typescript helper types and utils",
"author": "VZH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/js-toolkit/utils"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json .npmignore LICENSE README.md ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "npm run clean && tsc --build ./tsconfig.json && npm run minify",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --flag unstable_native_nodejs_ts_config",
"test": "jest",
"test:watch": "jest --watchAll",
"patch-publish": "yarn run build && npm version patch --force --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "yarn run build && npm version minor --force --no-workspaces-update -m 'v%s' && yarn run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "1.2.6"
},
"devDependencies": {
"@eslint/compat": "2.0.3",
"@eslint/js": "10.0.1",
"@js-toolkit/configs": "3.109.2",
"@types/eslint": "9.6.1",
"@types/jest": "30.0.0",
"@types/lodash.debounce": "4.0.9",
"copyfiles": "2.4.1",
"eslint": "9.39.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"jest": "30.3.0",
"lodash.debounce": "4.0.8",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"terser": "5.46.1",
"ts-jest": "29.4.9",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0",
"yargs": "18.0.0"
}
}