-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "p-cool",
"version": "0.2.0",
"description": "This module is a follow up of [this Medium post](https://webreflection.medium.com/about-web-components-cc3e8b4035b0).",
"scripts": {
"build": "npm run rollup && node copy.js && npm run size",
"rollup": "rollup --config rollup/index.config.js && rollup --config rollup/poly.config.js && rollup --config rollup/min.config.js",
"size": "echo 'Default'; cat index.js | brotli | wc -c && echo ''; echo 'Poly'; terser poly.js --module -m -c | brotli | wc -c && echo ''; echo 'Min'; cat min.js | brotli | wc -c"
},
"keywords": [
"custom",
"elements",
"behavior",
"builtin"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup": "^2.75.6",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-terser": "^7.0.2"
},
"module": "./esm/index.js",
"type": "module",
"unpkg": "./poly.js",
"exports": {
".": "./esm/index.js",
"./behaviors": "./esm/behaviors.js",
"./min": "./es.js",
"./poly": "./poly.js",
"./package.json": "./package.json"
},
"dependencies": {
"vanilla-elements": "^0.3.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/p-cool.git"
},
"bugs": {
"url": "https://github.com/WebReflection/p-cool/issues"
},
"homepage": "https://github.com/WebReflection/p-cool#readme"
}