-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "@geoblocks/proj",
"version": "0.4.9",
"description": "Geoblocks projections",
"main": "dist/proj.js",
"module": "dist/proj.js",
"source": "src/index.js",
"scripts": {
"build": "microbundle --format es",
"eslint": "eslint src/*.js",
"typecheck": "tsc --pretty",
"lint": "npm run eslint && npm run typecheck",
"test": "npm run lint && npm run jest && npm run doc",
"jest": "jest",
"doc": "typedoc --out dist/api --readme none --hideGenerator --exclude '**/*test*' src/index.js"
},
"author": "[email protected]",
"license": "bsd",
"peerDependencies": {
"ol": "10 || 9 || 8 || 7 || 6 || 5",
"proj4": "2"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@geoblocks/base": "^0.1.1",
"@types/jest": "^28.1.7",
"@types/ol": "^6.5.3",
"@types/proj4": "^2.5.2",
"babel-core": "^6.26.3",
"babel-jest": "^28.1.3",
"jest": "^28.1.3",
"microbundle": "^0.15.1",
"ol": "^7.0.0",
"proj4": "^2.8.0",
"typedoc": "^0.23.10",
"typescript": "^4.7.4"
}
}