-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 999 Bytes
/
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
{
"name": "jvtools",
"version": "1.0.10",
"description": "js常见方法工具包",
"main": "./dist/toolbox.js",
"module": "./dist/toolbox.es.js",
"types": "./dist/toolbox.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "vite build",
"prepare": "npm version patch && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lao-jiawei/toolBox-js.git"
},
"keywords": [
"js"
],
"author": "lao-jiawei",
"license": "ISC",
"bugs": {
"url": "https://github.com/lao-jiawei/toolBox-js/issues"
},
"homepage": "https://github.com/lao-jiawei/toolBox-js#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@types/jest": "^29.5.12",
"babel-loader": "^9.1.3",
"eslint": "^9.4.0",
"jest": "^29.7.0",
"vite": "^5.2.13"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true
}
}