-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.89 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.89 KB
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
60
61
62
63
64
{
"name": "dlite",
"pkgName": "dlite",
"version": "0.19.0",
"author": "adamghill",
"license": "MIT",
"description": "A tiny, blazing fast view library that creates reactive Web Components.",
"main": "dist/dlite.es.js",
"module": "dist/dlite.es.js",
"type": "module",
"files": [
"dist",
"src",
"docs/source"
],
"keywords": [
"reactive",
"bind",
"view",
"templating",
"directives",
"dom"
],
"scripts": {
"size": "gzip-size ./dist/dlite.es.js --include-original && echo `brotli dist/dlite.es.js -c | wc -c | numfmt --to=iec --suffix=B --format='%.2f'` '(brotli)'",
"check-size": "gzip-size ./dist/dlite.es.js --raw",
"ts": "tsc",
"t": "vitest run",
"tw": "vitest",
"b": "npm run build && stat -f%z dist/dlite.es.js | numfmt --to=iec --suffix=B --format='%.2f' && npm run size",
"build": "rollup -c",
"r": "DEV_SERVER_PORT=4000 DEV_SERVER_ROOT=. dev-server",
"sb": "cp CHANGELOG.md docs/source/changelog.md && poetry run sphinx-build -W -b dirhtml docs/source site",
"sa": "cp CHANGELOG.md docs/source/changelog.md && poetry run sphinx-autobuild -W -b dirhtml docs/source docs/build"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamghill/dlite.git"
},
"bugs": {
"url": "https://github.com/adamghill/dlite/discussions"
},
"homepage": "https://github.com/adamghill/dlite",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"cross-var": "^1.1.0",
"gh-pages": "^2.0.1",
"gzip-size-cli": "^5.1.0",
"jsdom": "^21.1.0",
"mutationobserver-shim": "^0.3.3",
"rollup": "^3.13.0",
"rollup-plugin-banner2": "^1.2.2",
"@rollup/plugin-terser": "^0.4.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.4"
},
"dependencies": {
}
}