-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "terser-config-atomic",
"version": "1.0.0",
"description": "The Terser configuration used in atom-community",
"repository": "https://github.com/atom-community/terser-config-atomic",
"license": "MIT",
"author": "Amin Yahyaabadi",
"main": "dist/terserrc.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"bump": "ncu -u",
"format": "prettier --write .",
"lint": "eslint . --fix",
"prepublishOnly": "npm run build",
"test": "jest",
"test.format": "prettier . --check",
"test.lint": "eslint ."
},
"prettier": "prettier-config-atomic",
"devDependencies": {
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"eslint": "^8.48.0",
"eslint-config-atomic": "^1.19.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"prettier-config-atomic": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"keywords": [
"terser",
"minify",
"preset",
"config"
]
}