forked from David-Desmaisons/vue-plotly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "vue-plotly",
"version": "1.1.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve ./example/main.js --open",
"build": "vue-cli-service build --name vue-plotly --entry ./src/index.js --target lib",
"test:unit": "vue-cli-service test:unit --coverage",
"lint": "vue-cli-service lint --fix",
"build:doc": "vue-cli-service build --entry ./example/main.js --dest docs --mode development",
"prepublishOnly": "npm run lint && npm run build && npm run build:doc",
"test:coverage": "vue-cli-service test:unit --coverage --verbose && codecov"
},
"main": "dist/vue-plotly.umd.js",
"module": "dist/vue-plotly.common.min.js",
"files": [
"dist/*.css",
"dist/*.map",
"dist/*.js",
"src/*"
],
"dependencies": {
"core-js": "^3.6.4",
"plotly.js": "^1.52.1",
"vue": "^2.6.11",
"vue-resize-directive": "^1.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-eslint": "^4.1.2",
"@vue/cli-plugin-unit-jest": "^4.1.2",
"@vue/cli-service": "^4.1.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"@vuedoc/md": "^1.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"bootstrap": "^4.4.1",
"codecov": "^3.6.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.1.2",
"font-awesome": "^4.7.0",
"highlight.js": "^9.18.0",
"ify-loader": "^1.1.0",
"jest-canvas-mock": "^2.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"vue-cli-plugin-component": "^1.12.2",
"vue-draggable-resizable": "^2.1.0",
"vue-highlight.js": "^3.1.0",
"vue-json-editor": "^1.4.0",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"keywords": [
"vue",
"component"
],
"license": "MIT"
}