-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "maptalks.e3",
"version": "0.5.2",
"description": "A plugin to integerate ECharts3 with maptalks.js. ",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maptalks/maptalks.e3.js.git"
},
"main": "dist/maptalks.e3.js",
"module": "dist/maptalks.e3.es.js",
"jsnext:main": "dist/maptalks.e3.es.js",
"files": [
"dist/maptalks.e3.js",
"dist/maptalks.e3.es.js",
"dist/maptalks.e3.min.js"
],
"scripts": {
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"lint": "eslint index.js test/**/*.js",
"test": "echo \"no tests for now.\"",
"pretest": "npm run lint",
"prepublish": "npm run lint",
"build": "rollup -c rollup.config.js",
"dev": "rollup -w -c rollup.config.js"
},
"devDependencies": {
"echarts": "^3.4.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"eslint": "^7.32.0",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^9.0.3",
"rollup": "^2.56.2",
"@rollup/plugin-babel": "^5.3.1"
},
"peerDependencies": {
"echarts": "^3.4.0"
},
"dependencies": {}
}