-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 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
66
{
"name": "plotly-plot",
"version": "0.5.0",
"author": "Misha Wolfson <[email protected]>",
"description": "A Polymer element providing an interface to the plotly.js library",
"repository": {
"type": "git",
"url": "[email protected]:ginkgobioworks/plotly-plot.git"
},
"keywords": [
"web-component",
"polymer",
"plotly",
"plotly.js",
"chart",
"plot",
"graph",
"graphing",
"plotting"
],
"main": "plotly-plot.html",
"license": "SEE LICENSE IN http://polymer.github.io/LICENSE.txt",
"homepage": "https://ginkgobioworks.github.io/plotly-plot/",
"dependencies": {
"bower": "^1.7.9",
"Polymer": "^1.6.0",
"es6-promise": "^4.0.5",
"plotly.js": "^1.24.0"
},
"files": [
".eslintrc.yaml",
"CONTRIBUTING.md",
"bower.json",
"demo",
"index.html",
"plotly-import.html",
"plotly-plot-behavior.html",
"plotly-plot-behavior.js",
"plotly-plot.html",
"test",
"wct.conf.json"
],
"devDependencies": {
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"polylint": "^2.10.1",
"polyserve": "^0.11.0",
"web-component-tester": "^4.0.0"
},
"peerDependencies": {
"Polymer": "^1.6.0"
},
"scripts": {
"start": "polyserve",
"test": "wct",
"bower": "bower",
"bower:install": "bower install",
"bower:update": "bower update",
"eslint": "eslint . && echo OK",
"polylint": "polylint && echo OK",
"lint": "npm run eslint && npm run polylint"
}
}