-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gulp-terser",
"version": "2.1.0",
"description": "gulp plugin, compressed es6+ code.",
"scripts": {
"start": "npm run clean && tsc --watch",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"test": "npm run build:test && node test/index.test.mjs",
"test:run": "node test/index.test.mjs",
"build:test": "rimraf ./test/dist && gulp --gulpfile ./test/gulpfile.mjs",
"eslint": "eslint ./ --fix",
"eslint:no-fix": "eslint ./"
},
"main": "dist/cjs.js",
"license": "MIT",
"keywords": [
"gulp",
"gulpplugin",
"uglify-es",
"terser"
],
"author": {
"name": "段昊辰",
"email": "duanhaochen@126.com",
"url": "https://github.com/duan602728596"
},
"repository": {
"type": "git",
"url": "git://github.com/duan602728596/gulp-terser.git"
},
"packageManager": "yarn@4.3.1",
"dependencies": {
"plugin-error": "^1.0.1",
"terser": "^5.9.0",
"through2": "^4.0.2",
"vinyl-sourcemaps-apply": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@eslint/compat": "^1.1.1",
"@sweet-milktea/babel-preset-sweet": "^4.2.1",
"@types/node": "^14",
"@types/through2": "^2",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.7.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.8.0",
"gulp": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-sourcemaps": "^3.0.0",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"rimraf": "^3.0.2",
"typescript": "^5.5.4"
},
"lint-staged": {
"**/*.{js,jsx,mjs,cjs,ts,tsx,mts,cts}": "eslint"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}