-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "html-inline-external",
"bin": {
"html-inline-external": "./lib/cli.js"
},
"files": [
"lib/**"
],
"version": "1.0.10",
"description": "Helps include/inline external Script/CSS/Images and compiles into a Single HTML page.",
"main": "lib/html-inline-external.js",
"repository": "https://github.com/okrohan/html-inline-external.git",
"author": "okrohan",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint src/*.js --fix",
"minify": "minify ./src/html-inline-external.js ./src/cli.js --out-dir ./lib --mangle"
},
"dependencies": {
"clipboardy": "^2.3.0",
"html-minifier": "^4.0.0",
"jsdom": "^16.4.0",
"pretty": "^2.0.0",
"yargs": "^16.1.0"
},
"devDependencies": {
"babel-minify": "^0.5.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1"
},
"keywords": [
"html-inline-external",
"html-inline",
"html-inclue-external",
"inline html files",
"include html files",
"include script in html",
"include css in html",
"inline script in html",
"inline css in html"
]
}