forked from phuocng/html-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.87 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
{
"name": "html-dom",
"description": "Common tasks to manage HTML DOM with native API",
"author": {
"name": "Nguyen Huu Phuoc",
"email": "[email protected]",
"url": "https://twitter.com/nghuuphuoc"
},
"homepage": "https://htmldom.dev",
"keywords": [
"dom",
"document object model",
"dom api",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/phuocng/html-dom"
},
"bugs": {
"url": "https://github.com/phuocng/html-dom/issues"
},
"license": "MIT",
"scripts": {
"build": "npm run build:eleventy && npm run build:sass && npm run build:js",
"build:sass": "sass styles/index.scss _site/styles/index.min.css --no-source-map --style compressed",
"build:eleventy": "npx @11ty/eleventy",
"build:js": "rollup -c rollup.config.js",
"deploy": "npm run build && netlify deploy --prod --dir=_site",
"format": "prettier --write \"**/*.+(json|md|scss)\"",
"start": "npm run watch:eleventy & npm run watch:sass",
"watch:eleventy": "npx @11ty/eleventy --serve --port=8081",
"watch:sass": "sass styles/index.scss _site/styles/index.min.css --no-source-map --style compressed --watch"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.0.1",
"@rollup/plugin-typescript": "^8.5.0",
"html-minifier": "^4.0.0",
"lit": "^2.3.1",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.54.8",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-fetch": "^3.0.0",
"markdown-it": "^13.0.1"
}
}