forked from heremaps/xyz-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.21 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@here/xyz-maps",
"version": "0.33.0",
"description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript",
"author": {
"name": "HERE Europe B.V.",
"url": "https://here.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/heremaps/xyz-maps.git"
},
"scripts": {
"prepare": "husky install",
"test": "lerna run --stream --no-prefix --scope @here/xyz-maps-test test -- ",
"preversion": "yarn run build-release && yarn run test",
"version": "lerna run update-changelog --parallel && ts-node scripts/bumpversion && git add -u",
"postversion": "yarn run bundle-release",
"watch-dev": "lerna run watch-dev --parallel",
"build-dev": "lerna run build-dev --parallel",
"build-doc": "npx typedoc ./packages/display/ ./packages/core ./packages/editor",
"build-release": "yarn run build-declarations && lerna run build-release --parallel",
"bundle-release": "yarn run build-doc && yarn run build-playground && yarn run build-release",
"build-declarations": "lerna run --parallel build-dts",
"playground": "yarn run build-playground && npx http-server . -d -c-1 -p 8081 -o ./packages/playground/dist",
"build-playground": "lerna run --scope @here/xyz-maps-playground build --stream --no-prefix",
"eslint:fix": "eslint **/packages/*/src/**/*.{js,ts} --fix",
"server": "npx http-server . -d -c-1 -p 8080 -o ./debug",
"set-access-token": "ts-node build/createToken --token"
},
"files": [
"dist/*.min.js"
],
"publishConfig": {},
"private": true,
"devDependencies": {
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "8.22.0",
"eslint-config-google": "^0.14.0",
"fs-extra": "^10.1.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"lerna": "^5.4.3",
"lint-staged": "^13.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.19.2",
"typedoc-plugin-remove-references": "^0.0.5",
"typescript": "^4.7.4"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14",
"yarn": ">=1.11.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}