forked from googlemaps/js-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.8 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
{
"name": "js-samples",
"description": "Samples for Google Maps JavaScript",
"keywords": [
"google",
"javascript",
"maps",
"samples"
],
"homepage": "https://github.com/googlemaps/js-samples#readme",
"bugs": {
"url": "https://github.com/googlemaps/js-samples/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/googlemaps/js-samples.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "bazel build //...",
"build:clean": "bazel clean",
"build:format": "lerna run build:format",
"ci": "yarn run build && yarn run test",
"defaults:data:merge": "lerna exec '../../build/merge_default_data.sh'",
"defaults:package:merge": "lerna exec '../../build/merge_default_package.sh'",
"deploy": "firebase deploy",
"deploy:ci": "firebase deploy --token $FIREBASE_TOKEN",
"extract:public": "mkdir -p public && tar -xf dist/bin/public.tar -C public",
"extract:master": "mkdir -p master/public && tar -xf dist/bin/public.tar -C master/public",
"format": "yarn run format:root && lerna run format",
"format:dist": "lerna run format:dist",
"format:root": "sort-package-json && prettier *.json *.js shared/**/*.scss --write --loglevel error",
"serve": "bazel run :serve",
"serve:firebase": "yarn run build && yarn run extract:public && firebase serve",
"test": "lerna run test && yarn run test:tags && bazel test //...",
"test:tags": "./build/test_tags.sh"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.1",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.1",
"@bazel/bazel": "^1.1.0",
"@bazel/buildifier": "^0.26.0",
"@bazel/buildozer": "^0.29.0",
"@bazel/rollup": "0.42.1",
"@bazel/typescript": "0.42.1",
"@types/googlemaps": "^3.37.7",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.0.0",
"codecov": "^3.6.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-prettier": "^3.1.1",
"firebase-tools": "^7.8.0",
"http-server": "^0.11.1",
"jest": "^24.9.0",
"json": "^9.0.6",
"lerna": "^3.16.4",
"license-check-and-add": "^3.0.3",
"npm-run-all": "^4.1.5",
"nunjucks-cli": "git+https://github.com/jpoehnelt/nunjucks-cli.git#a6c17c60a5e7fda4fbc8a73c0abf8af5750ff48c",
"prettier": "^1.18.2",
"rollup": "^1.24.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-strip-banner": "git+https://github.com/jpoehnelt/rollup-plugin-strip-banner.git#9ad97bb1a51a25e39de2c0341466e93e730c950d",
"sass": "^1.23.3",
"sort-package-json": "^1.22.1",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
}
}