-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.03 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
{
"name": "hyperhtml-wire",
"version": "2.1.1",
"description": "The persistent fragment like class used in hyperHTML",
"main": "cjs/index.js",
"module": "esm/index.js",
"unpkg": "min.js",
"scripts": {
"build": "npm run esm && npm run cjs && npm run min && npm run test && npm run size",
"esm": "cp index.js esm/ && echo 'export default Wire;' >> esm/index.js",
"cjs": "cp index.js cjs/ && echo 'module.exports = Wire;' >> cjs/index.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"min": "echo \"/*!(c) Andrea Giammarchi - ISC*/$(uglifyjs index.js -m -c)\" > min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
"test": "istanbul cover test/index.js"
},
"keywords": [
"hyperHTML",
"wire",
"class",
"fragment",
"persistent"
],
"author": "Andrea Giammrchi",
"license": "ISC",
"devDependencies": {
"basichtml": "^2.2.2",
"coveralls": "^3.0.11",
"istanbul": "^0.4.5",
"uglify-js": "^3.8.1"
}
}