-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 910 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
35
36
37
38
39
40
41
42
{
"name": "@cotar/base",
"version": "0.1.0",
"scripts": {
"clean": "tsc -b --clean && rimraf 'packages/*/build'",
"build": "tsc -b --pretty",
"lint": "eslint packages/ --quiet --fix --ignore-path .gitignore",
"test": "lerna run test",
"test-create-data": "node packages/tar/create-test-tar.js"
},
"repository": {
"type": "git",
"url": "https://github.com/linz/cotar.git"
},
"author": {
"name": "Land Information New Zealand",
"url": "https://linz.govt.nz",
"organization": true
},
"private": true,
"keywords": [],
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"description": "",
"devDependencies": {
"@linzjs/style": "^5.1.0",
"lerna": "^8.0.0",
"rimraf": "^5.0.5"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@types/**"
]
},
"files": []
}