-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 979 Bytes
/
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
{
"name": "@geoblocks/proj",
"version": "0.3.0",
"description": "Geoblocks projections",
"scripts": {
"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 --theme minimal --readme none --hideGenerator --listInvalidSymbolLinks --toc none --exclude '**/*test*'"
},
"author": "info@camptocamp.com",
"license": "bsd",
"peerDependencies": {
"ol": "5",
"proj4": "2"
},
"devDependencies": {
"@babel/core": ">=7.2.0",
"@babel/preset-env": ">=7.2.0",
"@geoblocks/base": ">=0.1.1",
"@types/jest": ">=23.3.10",
"@types/ol": ">=4.6.2",
"@types/proj4": ">=2.3.4",
"babel-core": ">=7.0.0-bridge.0",
"babel-jest": ">=23.6.0",
"jest": ">=23.6.0",
"ol": ">=5.3.0",
"proj4": ">=2.5.0",
"typedoc": ">=0.13.0",
"typescript": ">=3.1.6"
}
}