-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.33 KB
/
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
43
44
45
46
47
{
"name": "@leslie0403/utils",
"version": "1.0.7",
"description": "rollup + typescript 构建的常用工具函数库",
"main": "lib/utils.umd.js",
"module": "lib/utils.esm.js",
"typings": "lib/types/index.d.ts",
"scripts": {
"dev": "npm run removeT && rollup -wc rollup.config.js",
"build": "npm run removeT && rollup -c rollup.config.js",
"test": "jest",
"removeT": "rm -rf lib/types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luozyiii/utils.git"
},
"keywords": [
"常用工具函数库"
],
"author": "leslie <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/luozyiii/utils/issues"
},
"homepage": "https://github.com/luozyiii/utils#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/parser": "^4.28.1",
"core-js": "3",
"jest": "^27.0.3",
"rollup": "^2.50.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.3",
"tslib": "^2.3.0",
"typescript": "^4.3.4"
},
"dependencies": {}
}