-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 KB
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
{
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ncu": "node scripts/ncu.js",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:doc": "typedoc --readme ./README.md && open-cli doc/index.html",
"test": "lerna run test",
"test:e2e": "lerna run test:e2e",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"publish": "npm run lint && npm run build && npm run test && lerna publish",
"prepare": "husky"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "ogcapi-js",
"author": "Haoliang Yu",
"keywords": [
"ogcapi",
"ogcapi-js",
"opengeospatial",
"geospatial",
"client",
"javascript",
"typescript"
],
"devDependencies": {
"@lerna/version": "^6.4.1",
"husky": "^9.1.7",
"lerna": "^9.0.1",
"npm-check-updates": "^19.1.2",
"open-cli": "^8.0.0",
"pretty-quick": "^4.2.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
},
"workspaces": [
"./packages/*"
],
"volta": {
"node": "22.16.0",
"npm": "10.9.2"
},
"files": [
"packages/**/src",
"packages/**/README.md",
"LICENSE"
]
}