-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "embed-page",
"description": "Proof of concept for Embeddable Progressive Application - a microapplication container, a WebComponent acting as seamless IFRAME or html include",
"version": "0.0.21",
"browser": "embed-page.js",
"repository": {
"type": "git",
"url": "https://github.com/EPA-WG/embed-page.git"
},
"author": {
"name": "Sasha Firsov",
"email": "[email protected]",
"url": "https://blog.firsov.net/"
},
"license": "Apache-2.0",
"homepage": "https://github.com/EPA-WG/embed-page",
"bugs": "https://github.com/EPA-WG/embed-page/issues",
"keywords": [
"JS",
"Polymer",
"IFRAME",
"seamless",
"microapplication",
"EPA-WG",
"Web Component",
"WebComponent"
],
"dependencies": {
"@polymer/polymer": "^3.3.1"
},
"devDependencies": {
"@polymer/app-layout": "^3.1.0",
"@polymer/app-route": "^3.0.2",
"@polymer/iron-ajax": "^3.0.1",
"@polymer/iron-collapse": "^3.0.1",
"@polymer/iron-demo-helpers": "^3.1.0",
"@polymer/iron-icons": "^3.0.1",
"@polymer/iron-iconset": "^3.0.1",
"@polymer/iron-image": "^3.0.2",
"@polymer/iron-pages": "^3.0.1",
"@polymer/iron-scroll-threshold": "^3.0.1",
"@polymer/iron-test-helpers": "^3.0.1",
"@polymer/iron-validator-behavior": "^3.0.1",
"@polymer/marked-element": "^3.0.1",
"@polymer/paper-badge": "^3.1.0",
"@polymer/paper-button": "^3.0.1",
"@polymer/paper-card": "^3.0.1",
"@polymer/paper-checkbox": "^3.1.0",
"@polymer/paper-fab": "^3.0.1",
"@polymer/paper-icon-button": "^3.0.2",
"@polymer/paper-input": "^3.0.2",
"@polymer/paper-item": "^3.0.1",
"@polymer/paper-listbox": "^3.0.1",
"@polymer/paper-menu-button": "^3.0.1",
"@polymer/paper-progress": "^3.0.1",
"@polymer/paper-spinner": "^3.0.2",
"@polymer/paper-tabs": "^3.1.0",
"@polymer/paper-toggle-button": "^3.0.1",
"@vaadin/vaadin-combo-box": "^5.0.9",
"@webcomponents/webcomponentsjs": "^2.4.0",
"codemirror": "^5.49.2",
"growl": "^1.10.5",
"lodash": "^4.17.15",
"marked": "^4.0.10",
"mocha": "^3.5.3",
"mochawesome": "^4.1.0",
"polymer-cli": "^1.9.11",
"wct-browser-legacy": "^1.0.2"
},
"directories": {
"test": "test",
"demo": "demo"
},
"scripts": {
"start": "polymer serve",
"build": "polymer build",
"lint": "polymer lint",
"test": "polymer test",
"test:integration": "polymer build # test that psk builds without error with the CLI"
}
}