This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "fxr",
"productName": "Firefox Reality",
"libraryName": "fxr",
"description": "A command-line tool for installing and automating the Firefox Reality virtual-reality browser.",
"author": "fxr authors",
"version": "0.1.8",
"main": "index.js",
"bin": {
"fxr": "index.js"
},
"license": "MPL-2.0",
"repository": "https://github.com/MozillaReality/fxr-cli.git",
"homepage": "https://github.com/MozillaReality/fxr-cli",
"bugs": {
"url": "https://github.com/MozillaReality/fxr-cli/issues"
},
"scripts": {
"start": "npm run cli",
"cli": "node index.js",
"test": "node tests/sites/index.js",
"lint": "semistandard -v | snazzy",
"lint:fix": "semistandard --fix",
"prepublish-release": "git stash && git checkout master && git pull && npm version patch",
"publish-release": "node scripts/release.js",
"publish-please": "publish-please",
"publish-please-guard": "publish-please guard"
},
"dependencies": {
"android-platform-tools": "^1.2.0",
"chalk": "^2.4.1",
"command-line-args": "^5.0.2",
"command-line-commands": "^2.0.1",
"command-line-usage": "^5.0.5",
"concat-stream": "^1.6.2",
"fs-extra": "^6.0.1",
"get-port": "^3.2.0",
"internal-ip": "^3.0.1",
"loggy": "^1.0.2",
"node-fetch": "^2.1.2",
"picture-tube": "https://github.com/cvan/picture-tube#c8fc4c4",
"shelljs": "^0.8.2",
"testcafe": "^0.20.4"
},
"devDependencies": {
"cross-spawn": "^6.0.5",
"publish-please": "^3.2.0",
"semistandard": "^12.0.1",
"snazzy": "^7.1.1"
}
}