-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 842 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 842 Bytes
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
{
"name": "@linzjs/tile-matrix-set",
"version": "0.0.1",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/linz/NZTM2000TileMatrixSet.git"
},
"author": {
"name": "Land Information New Zealand",
"url": "https://linz.govt.nz",
"organization": true
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "tsc",
"lint": "npx eslint . --ignore-path .gitignore",
"test": "node --test",
"generate": "node ./scripts/write.json.mjs && yarn run lint --fix"
},
"license": "MIT",
"devDependencies": {
"@linzjs/style": "^4.2.0",
"@types/node": "^20.3.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/src/**",
"raw/*"
]
}