Files
fx_cast/package.json
2022-03-09 11:47:45 +00:00

39 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": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"jasmine-console-reporter": "^3.1.0",
"minimist": "^1.2.5",
"prettier": "^2.5.1",
"selenium-webdriver": "^4.1.1",
"typescript": "^4.6.2",
"ws": "^8.5.0"
}
}