-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 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
{
"name": "covutils",
"version": "0.6.1",
"license": "BSD-3-Clause",
"description": "Utilities for creating, transforming, and handling Coverage Data objects.",
"repository": {
"type": "git",
"url": "https://github.com/Reading-eScience-Centre/covutils.git"
},
"bugs": {
"url": "https://github.com/Reading-eScience-Centre/covutils/issues"
},
"author": {
"name": "Maik Riechert"
},
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"src/",
"lib/",
"covutils.*",
"covutils-lite.*"
],
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.1",
"ndarray": "^1.0.18",
"point-in-big-polygon": "^2.0.0",
"uriproj": "^0.2.2"
},
"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"
},
"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-coverage": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"mocha": "^9.1.3",
"rollup": "^2.62.0",
"rollup-plugin-terser": "^7.0.0",
"xndarray": "^0.3.0"
}
}