forked from keller-mark/vueplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.93 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
67
68
69
70
71
{
"name": "vueplotlib",
"version": "1.11.8",
"private": false,
"scripts": {
"serve": "vue-cli-service serve --open ./examples-src/index.js",
"build": "yarn run build:release && yarn run build:examples",
"lint": "vue-cli-service lint ./src/index.js",
"build:release": "vue-cli-service build --target lib ./src/index.js",
"build:examples": "vue-cli-service build --dest examples ./examples-src/index.js",
"docs": "documentation build src/** -f html -o docs --config documentation.yml",
"test:coveralls": "vue-cli-service test:unit --coverage --coverageReporters=text-lcov | coveralls",
"test": "vue-cli-service test:unit"
},
"dependencies": {
"colorjoe": "^4.1.0",
"d3": "^5.7.0",
"d3-delaunay": "4.1.3",
"d3-dispatch-nosplit": "^2.0.1",
"d3-drag": "^1.2.5",
"lodash": "^4.17.11",
"simple-statistics": "^6.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.6",
"@vue/cli-plugin-eslint": "^3.0.0-beta.6",
"@vue/cli-plugin-unit-jest": "^3.0.4",
"@vue/cli-service": "^3.0.0-beta.6",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"babel-loader": "^8.0.4",
"coveralls": "^3.0.2",
"documentation": "9.0.0-alpha.0",
"jest": "^23.6.0",
"node-sass": "^4.9.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue": "^2.5.13",
"vue-template-compiler": "^2.5.13"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": 0
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "MIT",
"author": "Mark Keller",
"main": "dist/vueplotlib.umd.js",
"repository": "https://github.com/keller-mark/vueplotlib"
}