forked from hensm/fx_cast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.53 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
{
"author": "Matt Hensman <m@matt.tf>",
"homepage": "https://hensm.github.io/fx_cast",
"bugs": "https://github.com/hensm/fx_cast",
"scripts": {
"postinstall": "npm run postinstall:app && npm run postinstall:ext",
"postinstall:app": "cd app && npm install",
"postinstall:ext": "cd ext && npm install",
"build": "npm run build:app && npm run build:ext",
"build:app": "cd app && npm run build",
"build:ext": "cd ext && npm run build",
"watch:ext": "cd ext && npm run watch",
"start:ext": "cd ext && npm run start",
"package": "npm run package:app && npm run package:ext",
"package:app": "cd app && npm run package",
"package:ext": "cd ext && npm run package",
"test": "node test/driver.js",
"install-manifest": "cd app && npm run install-manifest",
"remove-manifest": "cd app && npm run remove-manifest",
"lint": "npm run lint:app && npm run lint:ext",
"lint:app": "cd app && npm run lint",
"lint:ext": "cd ext && npm run lint"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/semver": "^7.3.1",
"@types/uuid": "^7.0.4",
"@types/ws": "^7.2.6",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jasmine-console-reporter": "^3.1.0",
"minimist": "^1.2.5",
"selenium-webdriver": "^4.0.0-alpha.7",
"semver": "^7.3.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"uuid": "^8.3.0",
"ws": "^7.3.1"
}
}