-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "brc-atlas-bigr",
"version": "2.4.2",
"description": "Utility functions for dealing with grid reference systems used in the British Isles.",
"keywords": [
"bng",
"osgb",
"national grid",
"grid reference",
"grid ref",
"british",
"irish",
"channel island",
"epsg",
"27700",
"29903",
"32630",
"4326",
"tm75",
"mapping"
],
"type": "module",
"main": "dist/bigr.cjs.js",
"module": "dist/bigr.esm.js",
"browser": "dist/bigr.umd.js",
"browsermin": "dist/bigr.min.umd.js",
"scripts": {
"lint": "npx eslint src",
"test": "jest",
"build": "rollup --config",
"docs": "jsdoc ./src/ -R README.md -d ./docs/api"
},
"author": "CEH Biological Records Centre",
"license": "GPL-3.0-only",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/BiologicalRecordsCentre/brc-atlas-bigr.git"
},
"dependencies": {
"point-in-polygon": "^1.0.1",
"proj4": "^2.6.2"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"eslint": "^7.4.0",
"eslint-plugin-jest": "^23.17.1",
"fs-extra": "^10.0.0",
"jest": "^29.7.0",
"rollup": "^3.29.5",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^6.1.0"
}
}