-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "util-es",
"version": "1.0.4",
"description": "js工具集",
"main": "util.min.js",
"typings": "types/index.d.ts",
"scripts": {
"start": "npm run declaration && npm run build && npm run uglify && npm run test",
"build": "rollup -c build/rollup.config.js -o util.js -n util",
"uglify": "rollup -c build/rollup.config.js -o util.min.js -n util --uglify",
"test": "jest --collectCoverage",
"declaration": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lllllxt/util-es.git"
},
"author": "lllllxt",
"license": "MIT",
"bugs": {
"url": "https://github.com/lllllxt/util-es/issues"
},
"homepage": "https://github.com/lllllxt/util-es#readme",
"files": [
"util.js",
"util.min.js",
"types"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"babel-jest": "^25.4.0",
"jest": "^25.4.0",
"rollup": "^2.7.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.8.3"
}
}