-
Notifications
You must be signed in to change notification settings - Fork 2k
/
package.json
79 lines (79 loc) · 2.32 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
{
"name": "@polymer/polymer",
"version": "3.5.2",
"description": "The Polymer library makes it easy to create your own web components. Give your element some markup and properties, and then use it on a site. Polymer provides features like dynamic templates and data binding to reduce the amount of boilerplate you need to write",
"main": "polymer-element.js",
"module": "polymer-element.js",
"directories": {
"doc": "docs",
"test": "test"
},
"devDependencies": {
"@polymer/gen-closure-declarations": "^0.5.0",
"@polymer/iron-component-page": "^3.0.0-pre.12",
"@polymer/test-fixture": "^3.0.0-pre.12",
"@webcomponents/webcomponentsjs": "^2.2.10",
"babel-eslint": "^7.2.3",
"babel-preset-minify": "^0.2.0",
"del": "^3.0.0",
"dom5": "^3.0.1",
"eslint-plugin-html": "^4.0.6",
"fs-extra": "^5.0.0",
"google-closure-compiler": "^20180204.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^4.0.0",
"gulp-if": "^2.0.1",
"gulp-replace": "^0.6.1",
"gulp-size": "^3.0.0",
"gulp-vulcanize": "^7.0.0",
"lazypipe": "^1.0.2",
"merge-stream": "^1.0.1",
"parse5": "^4.0.0",
"polymer-build": "^3.1.4",
"polymer-cli": "^1.9.9",
"through2": "^2.0.0",
"typescript": "^2.9.2",
"wct-browser-legacy": "^1.0.2"
},
"scripts": {
"build": "gulp",
"test": "npm run lint && polymer test --npm --module-resolution=node",
"serve": "polymer serve --npm --module-resolution=node",
"lint": "gulp lint",
"generate-types": "gulp generate-externs",
"regen-package-lock": "rm -rf node_modules package-lock.json; npm install",
"prepare": "npm run generate-types"
},
"repository": {
"type": "git",
"url": "https://github.com/Polymer/polymer.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Polymer/polymer/issues"
},
"homepage": "https://github.com/Polymer/polymer",
"publishConfig": {
"access": "public"
},
"resolutions": {
"inherits": "2.0.3",
"samsam": "1.1.3",
"supports-color": "3.1.2",
"type-detect": "1.0.0"
},
"dependencies": {
"@webcomponents/shadycss": "^1.9.1"
},
"files": [
"externs",
"lib",
"*.d.ts",
"index.html",
"polymer-*.js",
"manifest.json",
"CHANGELOG.md"
]
}