forked from heremaps/xyz-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.12 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.10.0-dev",
"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-editor.git"
},
"scripts": {
"test": "lerna run --stream --no-prefix --scope @here/xyz-maps-test test -- --browser Chrome",
"preversion": "yarn run test",
"postversion": "yarn run bundle-release",
"watch-dev": "lerna run watch-dev --parallel",
"build-dev": "lerna run build-dev --parallel",
"build-doc": "yarn run build-dev && lerna run --scope @here/xyz-maps-docs build",
"build-release": "lerna run build-release --parallel",
"bundle-release": "yarn run build-doc && yarn run build-playground && yarn run build-release",
"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",
"precommit": "lint-staged",
"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": {
"eslint": "6.8.0",
"eslint-config-google": "^0.14.0",
"http-server": "^0.12.0",
"husky": "4.2.1",
"lerna": "^3.19.0",
"lint-staged": "^10.0.4",
"ts-node": "^8.5.4",
"typescript": "^3.7.5",
"@typescript-eslint/parser": "^2.12.0"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=8.16.0",
"yarn": ">=1.11.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}