-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "polymer-resin",
"description": "XSS mitigation for Polymer webcomponents that uses safe html type contracts",
"version": "2.0.1",
"keywords": [
"polymer",
"security",
"xss"
],
"main": "polymer-resin.js",
"files": [
"/classify.js",
"/closure-bridge.js",
"/lib/contracts/contracts.js",
"/lib/namealiases/namealiases.js",
"/polymer-resin.html",
"/polymer-resin.js",
"/polymer3-resin.js",
"/sanitizer.js",
"/standalone/polymer-resin-debug.html",
"/standalone/polymer-resin-debug.js",
"/standalone/polymer-resin.html",
"/standalone/polymer-resin.js"
],
"dependencies": {
"@polymer/polymer": "^3.0.2",
"@webcomponents/webcomponentsjs": "^2.0.3"
},
"devDependencies": {
"web-component-tester": "^6.9.2"
},
"scripts": {
"clean": "rm -rf node_modules bower_components",
"prepare": "npm install --no-save bower && bower install",
"prepack": "npm test",
"test": "./run_tests.sh -l chrome"
},
"pre-commit": [
"prepack"
],
"contributors": [
{
"name": "The Polymer Authors",
"url": "http://polymer.github.io/AUTHORS.txt"
}
],
"license": "http://polymer.github.io/LICENSE.txt",
"repository": {
"type": "git",
"url": "git+https://github.com/Polymer/polymer-resin.git"
},
"bugs": {
"url": "https://github.com/Polymer/polymer-resin/issues"
}
}