-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 855 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
{
"name": "front-end-utils",
"version": "1.0.0",
"description": "前端工具库",
"type": "module",
"main": "dist/frontEndUtils.cjs.js",
"module": "dist/frontEndUtils.esm.js",
"browser": "dist/frontEndUtils.umd.js",
"types": "src/index.d.ts",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.10",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.9.6",
"rollup-plugin-node-resolve": "^5.2.0",
"tslib": "^2.6.2"
}
}