-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
79 lines (79 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mapray-js-monorepo",
"description": "3D Rendering Engine for GIS",
"keywords": [
"3D",
"sdk",
"api",
"webgl",
"map",
"geospatial",
"globe"
],
"scripts": {
"build": "run-s mapray ui css doc",
"build-devel": "run-s mapray-devel ui-devel css doc-devel",
"mapray": "yarn workspace @mapray/mapray-js build-min",
"mapray-devel": "yarn workspace @mapray/mapray-js build-devel",
"mapray-watch": "yarn workspace @mapray/mapray-js build-watch",
"ui": "yarn workspace @mapray/ui build-min",
"ui-devel": "yarn workspace @mapray/ui build-devel",
"ui-watch": "yarn workspace @mapray/ui build-watch",
"css": "yarn workspace @mapray/ui css",
"doc": "typedoc --validation.invalidLink --sort alphabetical --tsconfig tsconfig.json",
"doc-watch": "typedoc --validation.invalidLink --sort alphabetical --tsconfig tsconfig.json --watch",
"doc-devel": "typedoc --validation.invalidLink --sort alphabetical --tsconfig tsconfig-devel.json",
"doc-devel-watch": "typedoc --validation.invalidLink --sort alphabetical --tsconfig tsconfig-devel.json --watch",
"lint": "run-s lint-mapray lint-ui",
"lint-mapray": "yarn workspace @mapray/mapray-js lint",
"lint-ui": "yarn workspace @mapray/ui lint",
"test": "run-s test-expression test-browser",
"test-expression": "yarn workspace @mapray/mapray-js test",
"test-browser": "yarn --cwd browser-test test",
"test-browser-setup": "yarn --cwd browser-test install && yarn --cwd browser-test setup",
"test-browser-make-image": "yarn --cwd browser-test install && yarn --cwd browser-test make-image"
},
"contributors": [
{
"name": "Yasuhisa Tanioka"
},
{
"name": "Daisuke Matsumoto",
"url": "https://github.com/daisuke201"
},
{
"name": "masa-sony"
},
{
"name": "Matsuzaki Shota",
"url": "https://github.com/ShotaMatsuzaki"
},
{
"name": "sc-onishi"
},
{
"name": "SGA-sato-takamasa"
},
{
"name": "m-watakabe"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sony/mapray-js.git"
},
"bugs": {
"url": "https://github.com/sony/mapray-js/issues"
},
"homepage": "https://github.com/sony/mapray-js",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"typedoc": "0.25.8"
},
"dependencies": {}
}