forked from hensm/fx_cast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (34 loc) · 1.38 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
{
"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": "npm install ./app --prefix ./app",
"postinstall:ext": "npm install ./ext --prefix ./ext",
"build": "npm run build:app && npm run build:ext",
"build:app": "npm run build --prefix ./app",
"build:ext": "npm run build --prefix ./ext",
"package": "npm run package:app && npm run package:ext",
"package:app": "npm run package --prefix ./app",
"package:ext": "npm run package --prefix ./ext",
"test": "node test/driver.js",
"install-manifest": "npm run install-manifest --prefix ./app",
"remove-manifest": "npm run remove-manifest --prefix ./app",
"lint": "npm run lint:app && npm run lint:ext",
"lint:app": "npm run lint --prefix ./app",
"lint:ext": "npm run lint --prefix ./ext"
},
"devDependencies": {
"@types/uuid": "^3.4.4",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"jasmine-console-reporter": "^3.1.0",
"minimist": "^1.2.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"semver": "^5.6.0",
"typescript": "^3.3.3333",
"uuid": "^3.3.2",
"ws": "^6.1.2"
}
}