-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "@wwa/rollup-plugin-terser",
"version": "1.1.2",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/*.d.ts",
"dist/src/*.js",
"dist/src/*.js.map"
],
"scripts": {
"build": "tsc",
"pretest": "npm run lint",
"test": "jest",
"posttest": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjinks/rollup-plugin-terser.git"
},
"keywords": [
"rollup-plugin"
],
"author": "Volodymyr Kolesnykov <[email protected]> (https://wildwolf.name/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sjinks/rollup-plugin-terser/issues"
},
"homepage": "https://github.com/sjinks/rollup-plugin-terser#readme",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^2.14.0",
"@types/babel__code-frame": "^7.0.3",
"@types/jest": "^29.1.2",
"jest": "^29.2.0",
"jest-github-actions-reporter": "^1.0.3",
"jest-sonar-reporter": "^2.0.0",
"rollup": "^4.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"rollup": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"@babel/code-frame": "^7.18.6",
"terser": "^5.15.1"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}