-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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-alchemist",
"version": "1.1.1",
"description": "Reagent-style HTML templating, for use with WebComponents.",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"README.md"
],
"scripts": {
"precommit": "standard --fix",
"commit": "git add -p && git commit",
"test": "standard && mocha",
"rollup": "rollup --config rollup.config.js",
"minsize": "terser index.js -c -m -o index.min.js && stat index.min.js && rm index.min.js",
"recipe:playground": "npm run rollup -- -i recipes/playground.js -o www/playground.js",
"recipe:todo": "npm run rollup -- -i recipes/todo.js -o www/todo.js",
"recipe:logbook": "npm run rollup -- -i recipes/logbook.js -o www/logbook.js",
"recipes": "run-p recipe:*",
"watch": "sane \"npm run recipes\" . --glob=recipes/*.js",
"serve": "serve www",
"dev": "run-p watch serve",
"cov": "c8 npm test",
"lcov": "c8 --reporter=\"lcovonly\" npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garbados/html-alchemist.git"
},
"keywords": [
"html",
"webcomponents"
],
"author": "Diana Belle <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/garbados/html-alchemist/issues"
},
"homepage": "https://github.com/garbados/html-alchemist#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"c8": "^10.1.3",
"fast-check": "^3.23.2",
"html-validate": "^9.1.1",
"mocha": "^11.0.1",
"npm-run-all2": "^7.0.2",
"rollup": "^4.30.0",
"sane": "^5.0.1",
"serve": "^14.2.4",
"standard": "^17.1.2",
"terser": "^5.37.0"
}
}