-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
72
{
"name": "@jacksonrya/vue-mouse-topography",
"version": "0.1.2-0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jacksonrya/vue-mouse-topography"
},
"author": {
"name": "Jackson Baker Ryan",
"email": "[email protected]",
"url": "https://jbr.fyi"
},
"homepage": "https://github.com/jacksonrya/vue-mouse-topography#readme",
"bugs": {
"url": "https://github.com/jacksonrya/vue-mouse-topography/issues"
},
"files": [
"dist/*"
],
"main": "dist/vue-mouse-topography.js",
"module": "dist/vue-mouse-topography.esm.js",
"unpkg": "dist/vue-mouse-topography.min.js",
"scripts": {
"serve": "export NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build": "rollup --config build/rollup.config.js",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-mouse-topography.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-mouse-topography.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-mouse-topography.min.js",
"lint": "vue-cli-service lint"
},
"peerDependencies": {
"vue": "^2.6.14"
},
"dependencies": {
"core-js": "^3.18.0",
"d3-contour": "^3.0.1",
"lodash-es": "^4.17.21",
"p5": "^1.4.0"
},
"devDependencies": {
"@jacksonrya/eslint-config-standard": "^1.1.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"babel-eslint": "^10.1.0",
"eslint": "6.8.0",
"eslint-plugin-vue": "^7.18.0",
"rollup": "^2.56.3",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-vue": "^6.0.0",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"keywords": [
"vue",
"p5",
"contour lines",
"topography",
"matrix",
"heatmap"
]
}