-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 926 Bytes
/
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
{
"name": "@frank-mayer/yahp",
"packageManager": "yarn@3.2.0",
"version": "0.4.1",
"description": "Yet another HTML preprocessor",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "node --experimental-specifier-resolution=node ./__test__/test.js",
"lint": "eslint --fix --ext .ts ."
},
"repository": "https://github.com/Frank-Mayer/yahp.git",
"author": "Frank Mayer <frank.mayer1907@protonmail.com>",
"license": "MIT",
"dependencies": {
"@frank-mayer/magic": "^4.0.0",
"html-minifier": "^4.0.0",
"jsdom": "^19.0.0",
"node-fetch": "^3.2.4"
},
"devDependencies": {
"@types/html-minifier": "^4.0.2",
"@types/jsdom": "^16.2.14",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.6.4"
}
}