-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 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
{
"name": "@mxssfd/bundle-cli",
"version": "5.0.6",
"description": "bundle compress js",
"main": "index.js",
"bin": {
"bundle-cli": "bin/index"
},
"files": [
"packer/index.js",
"dist/*.js",
"dist/*/*"
],
"scripts": {
"test": "rollup -c",
"jest:test": "jest",
"jest:cov": "jest --coverage",
"build": "tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mengxinssfd/bundle-cli.git"
},
"keywords": [
"compress",
"bundle",
"js"
],
"author": "dyh",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengxinssfd/bundle-cli/issues"
},
"homepage": "https://github.com/mengxinssfd/bundle-cli#readme",
"devDependencies": {
"@types/node": "^16.0.0",
"@types/rollup": "^0.54.0",
"@types/uglify-js": "^3.13.1",
"@types/jest": "^27.4.1",
"jest": "^27.4.1",
"ts-jest": "^27.1.3",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2"
},
"dependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.14.7",
"@mxssfd/ts-utils": "^3.0.15",
"@rollup/plugin-babel": "^5.3.0",
"jsdom": "^16.6.0",
"rollup": "^2.70.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^4.6.3",
"uglify-js": "^3.13.10"
}
}