-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.22 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@wont/utils",
"version": "0.0.1-beta.5",
"description": "@wont/utils is javascript library, written with typescript. supporting browser and node",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"unpkg": "dist/umd.min.js",
"keywords": [
"@wont",
"utils",
"@wont/utils"
],
"author": {
"name": "liukun",
"email": "919590347@qq.com"
},
"files": [
"dist",
"es",
"lib"
],
"license": "MIT",
"scripts": {
"bump": "bumpp package.json -c -p -t --all -x \"npm run changelog\"",
"eslint": "eslint --ext .ts .",
"eslint:fix": "eslint --ext .ts,.js . --fix",
"prettier": "prettier --write .",
"create": "hygen module with-prompt",
"changelog": "conventional-changelog -p angular -i docs/common/CHANGELOG.md -s -r 0",
"commit": "git-cz",
"docs": "ts-node scripts/doc.ts",
"build": "wont-tools compile utils -e src",
"prepublishOnly": "npm run build",
"link": "npm run prepublishOnly && npm link",
"build:docs": "npm run changelog && npm run docs && npm run vuepress:build",
"dev": "npm run changelog && npm run docs && vuepress dev docs",
"vuepress:build": "vuepress build docs",
"coverage": "jest --coverage --verbose -u --detectOpenHandles",
"test:fix": "jest --clearCache",
"test:n": "jest --no-cache",
"test": "jest --detectOpenHandles"
},
"homepage": "wont-org.github.io/utils/",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/wont-org/utils"
},
"bugs": {
"url": "https://github.com/wont-org/utils/issues"
},
"lint-staged": {
"*.{jsx,js,tsx,ts,md,mdx}": [
"prettier --write"
],
"*.{jsx,js,tsx,ts}": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/jest": "^26.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"@wont/tools": "0.0.1-beta.5",
"bumpp": "^10.1.0",
"chalk": "^4.1.0",
"cli-color": "^2.0.0",
"commitizen": "^4.1.2",
"consola": "^2.14.0",
"conventional-changelog-cli": "^2.0.34",
"dekko": "^0.2.1",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.19.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^11.2.0",
"glob": "^7.1.6",
"husky": "4.2.5",
"hygen": "^6.0.4",
"jest": "^26.1.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"sinon": "^9.2.1",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "~4.3.4",
"vuepress": "^1.5.2"
},
"dependencies": {
"js-base64": "^3.7.7",
"lodash-es": "^4.17.21"
}
}