Files
fx_cast/package.json
2021-08-31 07:59:58 +01:00

37 lines
1.5 KiB
JSON

{
"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": "eslint app/src --ext .ts,.tsx",
"lint:ext": "eslint ext/src --ext .ts,.tsx"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"jasmine-console-reporter": "^3.1.0",
"minimist": "^1.2.5",
"prettier": "^2.3.2",
"selenium-webdriver": "^4.0.0-beta.1",
"ws": "^7.4.3"
}
}