2019-05-21 00:37:45 +03:00
|
|
|
{
|
|
|
|
"name": "fxa-support-panel",
|
2019-11-05 00:52:46 +03:00
|
|
|
"version": "1.149.4",
|
2019-05-21 00:37:45 +03:00
|
|
|
"description": "Small app to help customer support access FxA details",
|
|
|
|
"directories": {
|
|
|
|
"test": "test"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2019-07-17 21:44:40 +03:00
|
|
|
"build": "./node_modules/typescript/bin/tsc",
|
2019-09-07 00:25:27 +03:00
|
|
|
"lint": "npm-run-all --parallel lint:*",
|
|
|
|
"lint:tslint": "./node_modules/tslint/bin/tslint -p .",
|
2019-05-21 00:37:45 +03:00
|
|
|
"lint:deps": "npm audit --json | audit-filter --nsp-config=.nsprc --audit=-",
|
2019-07-17 21:44:40 +03:00
|
|
|
"test": "./node_modules/mocha/bin/mocha -r ts-node/register test/**/*.spec.ts test/**/**/*.spec.ts",
|
2019-05-21 00:37:45 +03:00
|
|
|
"shrink": "npmshrink && npm run postinstall",
|
2019-10-02 01:52:02 +03:00
|
|
|
"watch": "tsc -w",
|
2019-07-17 21:44:40 +03:00
|
|
|
"start-dev": "npm run build && node dist/bin/worker.js",
|
2019-10-02 01:52:02 +03:00
|
|
|
"start": "NODE_ENV=production node dist/bin/worker.js 2>&1",
|
|
|
|
"debug": "NODE_ENV=development nodemon --legacy-watch --watch ./dist --inspect=0.0.0.0:5858 --nolazy dist/bin/worker.js"
|
2019-05-21 00:37:45 +03:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/mozilla/fxa.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=10"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/mozilla/fxa/issues/",
|
|
|
|
"homepage": "https://github.com/mozilla/fxa/",
|
|
|
|
"license": "MPL-2.0",
|
|
|
|
"author": "Mozilla (https://mozilla.org/)",
|
|
|
|
"readmeFilename": "README.md",
|
|
|
|
"dependencies": {
|
2019-09-17 01:22:33 +03:00
|
|
|
"@hapi/hapi": "^18.4.0",
|
2019-08-10 00:50:01 +03:00
|
|
|
"@hapi/scooter": "^5.1.0",
|
|
|
|
"blankie": "^4.1.1",
|
2019-07-17 21:44:40 +03:00
|
|
|
"bluebird": "^3.5.5",
|
|
|
|
"convict": "^5.0.0",
|
2019-11-05 20:18:13 +03:00
|
|
|
"handlebars": "^4.4.5",
|
2019-05-21 00:37:45 +03:00
|
|
|
"mozlog": "2.2.0",
|
2019-08-03 03:23:55 +03:00
|
|
|
"raven": "2.6.4",
|
2019-07-17 21:44:40 +03:00
|
|
|
"request": "^2.88.0",
|
|
|
|
"request-promise-native": "^1.0.7",
|
|
|
|
"typesafe-joi": "^2.0.6"
|
2019-05-21 00:37:45 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-07-17 21:44:40 +03:00
|
|
|
"@types/bluebird": "^3.5.27",
|
|
|
|
"@types/convict": "^4.2.1",
|
|
|
|
"@types/hapi__hapi": "^18.2.5",
|
|
|
|
"@types/mocha": "^5.2.7",
|
|
|
|
"@types/nock": "^10.0.3",
|
|
|
|
"@types/node": "^12.6.2",
|
|
|
|
"@types/request-promise-native": "^1.0.16",
|
2019-09-07 00:25:27 +03:00
|
|
|
"audit-filter": "^0.5.0",
|
2019-07-17 21:44:40 +03:00
|
|
|
"chai": "^4.2.0",
|
2019-05-21 00:37:45 +03:00
|
|
|
"eslint-plugin-fxa": "git+https://github.com/mozilla/eslint-plugin-fxa#master",
|
|
|
|
"fxa-conventional-changelog": "1.1.0",
|
2019-07-17 21:44:40 +03:00
|
|
|
"mocha": "^6.1.4",
|
|
|
|
"nock": "^10.0.6",
|
2019-10-02 01:52:02 +03:00
|
|
|
"nodemon": "^1.19.3",
|
2019-09-07 00:25:27 +03:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-07-17 21:44:40 +03:00
|
|
|
"npmshrink": "2.0.0",
|
|
|
|
"prettier": "^1.18.2",
|
|
|
|
"sinon": "^7.3.2",
|
|
|
|
"ts-node": "^8.3.0",
|
|
|
|
"ts-sinon": "^1.0.17",
|
|
|
|
"tslint": "^5.18.0",
|
|
|
|
"tslint-config-prettier": "^1.18.0",
|
|
|
|
"tslint-plugin-prettier": "^2.0.1",
|
|
|
|
"typescript": "^3.5.3"
|
2019-05-21 00:37:45 +03:00
|
|
|
}
|
|
|
|
}
|