-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.54 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
{
"name": "gluehtml",
"version": "0.2.12",
"license": "MIT",
"author": "Max Zakharzhevskiy",
"description": "Glue HTML local external files into solid HTML",
"bin": "dist/cli.js",
"source": "src/main.ts",
"files": [
"dist/**.*"
],
"engines": {
"node": ">=16"
},
"targets": {
"default": {
"includeNodeModules": true,
"source": "src/main.ts",
"distDir": "./dist",
"isLibrary": true,
"optimize": true
}
},
"keywords": [
"HTML",
"single",
"page",
"typescript",
"cheerio"
],
"scripts": {
"dev": "tsc -w",
"build-ts": "parcel build --no-source-maps",
"build": "rm -rf dist && yarn build-ts && cp src/cli.js dist",
"prepublish": "yarn build"
},
"dependencies": {
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^8.1.0",
"minimist": "1.2.6"
},
"devDependencies": {
"@types/cheerio": "0.22.31",
"@types/fs-extra": "^8.0.1",
"@types/minimist": "1.2.2",
"@types/node": "^12.12.11",
"ts-loader": "^6.2.1",
"typescript": "4.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxzz/gluehtml.git"
},
"bugs": {
"url": "https://github.com/maxzz/gluehtml/issues"
},
"homepage": "https://github.com/maxzz/gluehtml/tree/master/#readme"
}