-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.85 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
{
"name": "builtin-elements",
"version": "1.0.1",
"description": "[](https://coveralls.io/github/WebReflection/builtin-elements?branch=main)",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run rollup:es && npm run rollup:index && npm run rollup:esm && npm run test && npm run size",
"cjs": "ascjs esm cjs",
"rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
"rollup:esm": "rollup --config rollup/esm.config.js",
"rollup:index": "rollup --config rollup/index.config.js && sed -i.bck 's/^var /self./' index.js && rm -rf index.js.bck",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"size": "cat es.js | brotli | wc -c && cat esm.js | brotli | wc -c",
"test": "c8 node test/index.js"
},
"keywords": [
"custom",
"builtin",
"elements"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"ascjs": "^5.0.1",
"c8": "^7.11.3",
"coveralls": "^3.1.1",
"linkedom": "^0.14.9",
"rollup": "^2.74.1",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.13.1"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"unpkg": "esm.js",
"dependencies": {
"@webreflection/html-shortcuts": "^0.1.1",
"element-notifier": "^1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/builtin-elements.git"
},
"bugs": {
"url": "https://github.com/WebReflection/builtin-elements/issues"
},
"homepage": "https://github.com/WebReflection/builtin-elements#readme"
}