-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 835 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 835 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
26
27
28
29
30
{
"name": "attachshadow",
"version": "0.3.0",
"description": "An iframe based Shadow DOM poorlyfill",
"main": "index.js",
"unpkg": "min.js",
"scripts": {
"build": "npm run min && npm run size",
"min": "echo \"/*! (c) Andrea Giammarchi (ISC) */$(uglifyjs index.js --support-ie8 --comments=/^!/ -c -m)\" > min.js",
"size": "echo \"size: $(cat min.js | brotli | wc -c)\" bytes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/attachshadow.git"
},
"keywords": [
"shadow",
"dom",
"polyfill"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebReflection/attachshadow/issues"
},
"homepage": "https://github.com/WebReflection/attachshadow#readme",
"devDependencies": {
"uglify-js": "^3.8.0"
}
}