-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "email-minifier",
"version": "1.0.5",
"keywords": [
"compress",
"compressor",
"css",
"html",
"htmlmin",
"email",
"bigemail",
"emailmin",
"javascript",
"min",
"minification",
"minifier",
"minify",
"optimize",
"optimizer",
"pack",
"packer",
"parse",
"parser",
"uglifier",
"uglify"
],
"description": "A well-tested email minifier based on TypeScript for browser and Node.js",
"main": "dist/cjs/index.cjs",
"module": "dist/mjs/index.mjs",
"exports": {
".": {
"import": {
"default": "./dist/mjs/index.mjs",
"types": "./dist/mjs/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.ts"
}
}
},
"scripts": {
"performance": "ts-node ./scripts/performance.ts",
"build:playground":"cd ./playground && pnpm i --no-frozen-lockfile && pnpm run build",
"lint": "npx eslint ./lib --fix",
"build": "npm run lint && rm -rf dist && rollup --config --bundleConfigAsCjs",
"test": "npm run lint && jest",
"publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luckrnx09/email-minifier.git"
},
"author": "luckrnx09",
"maintainers": [
"luckrnx09 <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/luckrnx09/email-minifier/issues"
},
"homepage": "https://github.com/luckrnx09/email-minifier#readme",
"devDependencies": {
"@types/csso": "^5.0.3",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rollup": "^4.9.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"csso": "^5.0.5",
"jsdom": "^23.0.1"
},
"files": [
"dist/"
]
}