forked from googlemaps/js-three
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.35 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": "@googlemaps/three",
"version": "3.0.10",
"keywords": [
"google",
"maps",
"webgl",
"threejs"
],
"homepage": "https://github.com/googlemaps/js-three",
"bugs": {
"url": "https://github.com/googlemaps/js-three/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-three.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.umd.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build:examples": "rm -rf public && rollup -c rollup.config.examples.js",
"docs": "typedoc src/index.ts && npm run build:examples && cp -r dist docs/dist && cp -r public docs/public",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "rm -rf dist && rollup -c",
"start": "rollup -c rollup.config.examples.js -w",
"test": "jest src/*",
"test:e2e": "jest --passWithNoTests e2e/*"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/runtime-corejs3": "^7.21.0",
"@googlemaps/jest-mocks": "^2.10.0",
"@googlemaps/js-api-loader": "^1.15.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-html": "^1.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/d3-random": "^3.0.1",
"@types/google.maps": "^3.52.1",
"@types/jest": "^27.4.1",
"@types/proj4": "^2.5.2",
"@types/selenium-webdriver": "^4.1.12",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.149.0",
"@typescript-eslint/eslint-plugin": ">=4.33.0",
"@typescript-eslint/parser": ">=4.33.0",
"chromedriver": "^110.0.0",
"core-js": "^3.29.0",
"d3-random": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"geckodriver": "^3.2.0",
"jest": "^26.6.3",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"selenium-webdriver": "^4.8.1",
"ts-jest": "^26.5.6",
"three": "^0.150.1",
"typedoc": "^0.23.26",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}