forked from David-Desmaisons/vue-plotly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.82 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
{
"name": "@frantche/vue-plotly",
"version": "1.0.1",
"private": false,
"scripts": {
"serve": "vue-cli-service serve ./example/main.js --open",
"build:doc": "vue-cli-service build --entry ./example/main.js --dest docs --mode development",
"build": "vue-cli-service build --name vue-plotly --entry ./src/index.js --target lib",
"lint": "vue-cli-service lint",
"prepublishOnly": "npm run lint && npm run build && npm run build:doc",
"test:unit": "vue-cli-service test:unit --coverage",
"test:coverage": "vue-cli-service test:unit --coverage --verbose && codecov"
},
"dependencies": {
"plotly.js": "^1.49.2",
"vue": "^2.6.9",
"vue-resize-directive": "^1.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-unit-jest": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "1.0.0-beta.29",
"@vuedoc/md": "^1.5.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"bootstrap": "^4.3.1",
"codecov": "^3.2.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"font-awesome": "^4.7.0",
"highlight.js": "^9.15.6",
"ify-loader": "^1.1.0",
"jest-canvas-mock": "^2.0.0-beta.1",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"vue-cli-plugin-component": "^1.10.5",
"vue-draggable-resizable": "^2.0.0-rc1",
"vue-highlight.js": "^3.1.0",
"vue-json-editor": "^1.2.3",
"vue-server-renderer": "^2.6.9",
"vue-template-compiler": "^2.6.9"
},
"files": [
"dist/*.css",
"dist/*.map",
"dist/*.js",
"src/*"
],
"keywords": [
"vue",
"component"
],
"license": "MIT",
"main": "dist/vue-plotly.umd.js",
"module": "dist/vue-plotly.common.min.js"
}