-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.98 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": "leaflet-coverage",
"version": "0.9.0",
"license": "BSD-3-Clause",
"description": "A Leaflet plugin for visualizing coverage data",
"repository": {
"type": "git",
"url": "https://github.com/Reading-eScience-Centre/leaflet-coverage.git"
},
"bugs": {
"url": "https://github.com/Reading-eScience-Centre/leaflet-coverage/issues"
},
"author": {
"name": "Maik Riechert"
},
"files": [
"lib/",
"src/",
"leaflet-coverage.*"
],
"main": "lib/index.js",
"module": "src/index.js",
"scripts": {
"docs": "esdoc -c esdoc.json",
"style": "eslint src/",
"transpile": "babel -d lib/ src/",
"test": "karma start --single-run",
"karma": "karma start",
"browserdist": "rollup -c",
"build": "npm run transpile && npm run browserdist",
"prepublish": "npm run build",
"playground": "node tools/run-playground.js"
},
"dependencies": {
"covutils": "^0.6.1",
"ndarray": "^1.0.18"
},
"peerDependencies": {
"c3": "^0.7.20",
"leaflet": "^1.7.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/register": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"covjson-reader": "^0.16.3",
"esdoc": "^1.1.0",
"esdoc-importpath-plugin": "1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-standard": "^4.1.0",
"karma": "^6.3.9",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-coverage": "^2.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^9.1.3",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.0"
}
}