-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.16 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
80
81
82
83
84
85
86
87
88
{
"name": "running-on-streetview",
"version": "1.0.0",
"description": "Running on Google Street View.",
"keywords": [
"running",
"fitness",
"streetview",
"map",
"google"
],
"homepage": "https://github.com/azu/running-on-streetview",
"bugs": {
"url": "https://github.com/azu/running-on-streetview/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/running-on-streetview.git"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/running-on-streetview.js",
"types": "lib/running-on-streetview.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"dev": "parcel dev index.html",
"build": "parcel build index.html",
"clean": "rimraf lib/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"debug:chrome": "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --disable-gpu --use-fake-device-for-media-stream --use-file-for-fake-video-capture=\"./debug/run-up.mjpeg\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@types/googlemaps": "^3.39.4",
"@types/lodash-es": "^4.17.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/pixelmatch": "^5.2.1",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"ts-node-test-register": "^8.0.1",
"typescript": "^3.8.3"
},
"dependencies": {
"debug": "^4.1.1",
"idb": "^5.0.2",
"lodash-es": "^4.17.15",
"p-queue": "^6.4.0",
"pixelmatch": "^5.2.0",
"purecss": "^2.0.0"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Safari versions"
]
}