This repository has been archived by the owner on Sep 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
65 lines (65 loc) · 1.61 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@webcomponents/shadydom",
"version": "1.6.0",
"description": "Shadow DOM polyfill",
"main": "shadydom.min.js",
"keywords": [
"shady-dom",
"shadydom",
"shadow-dom",
"shadowdom",
"web-components",
"webcomponents",
"polyfill",
"shim"
],
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/webcomponents/shadydom.git"
},
"author": "The Polymer Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/webcomponents/shadydom/issues"
},
"scripts": {
"build": "gulp",
"test": "npm run lint && npm run build && wct",
"debug": "gulp debug",
"lint": "eslint src",
"regen-package-lock": "rm -rf node_modules package-lock.json; npm install",
"prepack": "npm run build"
},
"files": [
"shadydom.min.js*",
"src/**/*.js",
"externs/**/*.js",
"LICENSE.md",
"README.md"
],
"homepage": "https://webcomponents.org/polyfills",
"devDependencies": {
"@webcomponents/custom-elements": "^1.2.3",
"@webcomponents/shadycss": "^1.7.1",
"@webcomponents/template": "^1.3.1",
"@webcomponents/webcomponents-platform": "^1.0.0",
"eslint": "^4.19.1",
"eslint-plugin-html": "^4.0.5",
"google-closure-compiler": "^20190121.0.0",
"gulp": "^4.0.0",
"gulp-rename": "^1.4.0",
"gulp-rollup": "^2.16.2",
"gulp-size": "^3.0.0",
"gulp-sourcemaps": "^2.6.4",
"promise-polyfill": "^8.0.0",
"rollup": "^0.62.0",
"wct-browser-legacy": "^1.0.1",
"web-component-tester": "^6.9.0"
},
"publishConfig": {
"access": "public"
}
}