-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 807 Bytes
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
{
"source": "src/index.js",
"module": "dist/toothbrush-card.js",
"version": "0.36.0",
"targets": {
"module": {
"includeNodeModules": true
}
},
"scripts": {
"watch": "parcel watch",
"build": "node scripts/gen_build_info.mjs && parcel build src/index.js --dist-dir dist --no-source-maps",
"test": "node --import ./test/helpers/register-src-loader.mjs --test \"test/**/*.test.mjs\"",
"test:dist": "npm run build && node --import ./test/helpers/register-src-loader.mjs --import ./test/helpers/use-dist.mjs --test \"test/**/*.test.mjs\"",
"icons": "node scripts/gen_icon_overview.mjs"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@parcel/transformer-inline-string": "^2.16.1",
"parcel": "^2.16.1"
},
"dependencies": {
"lit": "^3.3.1"
}
}