mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
23 lines
935 B
JSON
23 lines
935 B
JSON
{
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"fs-extra": "^7.0.1",
|
|
"jasmine-console-reporter": "^3.1.0",
|
|
"selenium-webdriver": "^4.0.0-alpha.1",
|
|
"semver": "^5.6.0"
|
|
}
|
|
}
|