-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "vue-plotly.js",
"version": "1.0.8",
"description": "A plotly.js Vue component",
"main": "vue-plotly.js",
"types": "./vue-plotly.d.ts",
"files": [
"vue-plotly.js",
"vue-plotly.d.ts",
"factory.js",
"factory.d.ts"
],
"scripts": {
"build": "rm -rf vue-plotly.js && NODE_ENV=production webpack",
"prepare": "npm run test && npm run build",
"dev": "webpack-dev-server --content-base example/",
"lint": "eslint ./src",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrewBlox/vue-plotly.js.git"
},
"keywords": [
"graphing",
"plotting",
"data",
"visualization",
"plotly",
"vue"
],
"author": "BrewBlox",
"license": "MIT",
"bugs": {
"url": "https://github.com/BrewBlox/vue-plotly.js/issues"
},
"homepage": "https://github.com/BrewBlox/vue-plotly.js#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-vue": "^4.3.0",
"vue": "^2.5.16",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"plotly.js": "^1.35.2"
}
}