forked from mozilla/fxa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "fxa-auth-db-mysql",
"version": "1.209.0",
"description": "MySQL backend for Firefox Accounts",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/fxa.git"
},
"bin": "bin/db_patcher.js",
"scripts": {
"outdated": "npm outdated --depth 0 || exit 0",
"audit": "npm audit --json | audit-filter --nsp-config=.nsprc --audit=-",
"lint": "eslint .",
"start": "../../_scripts/check-mysql.sh && node ./bin/db_patcher.js >/dev/null",
"stop": "",
"restart": "",
"test": "npm run test-mysql && npm run test-server && npm run lint",
"test-mysql": "node ./bin/db_patcher.js >/dev/null && ./scripts/mocha-coverage.js test/backend test/local --exit",
"test-server": "./scripts/mocha-coverage.js db-server/test/local --exit",
"migration-lint": "node scripts/migration-lint",
"format": "prettier --write --config ../../_dev/.prettierrc '**'"
},
"author": "Mozilla (https://mozilla.org/)",
"homepage": "https://github.com/mozilla/fxa/tree/main/packages/fxa-auth-db-mysql",
"bugs": {
"url": "https://github.com/mozilla/fxa/issues"
},
"license": "MPL-2.0",
"dependencies": {
"@sentry/node": "^6.7.2",
"base64url": "3.0.1",
"bluebird": "^3.7.2",
"convict": "^6.1.0",
"convict-format-with-moment": "^6.0.1",
"convict-format-with-validator": "^6.0.1",
"fxa-jwtool": "^0.7.2",
"fxa-shared": "workspace:*",
"ip": "^1.1.5",
"mozlog": "^3.0.2",
"mysql": "^2.18.1",
"mysql-patcher": "0.7.0",
"request": "^2.88.2",
"restify": "^8.4.0"
},
"devDependencies": {
"audit-filter": "0.5.0",
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-plugin-fxa": "^2.0.2",
"mocha": "^9.0.1",
"nock": "^13.1.0",
"nyc": "^15.1.0",
"pm2": "^5.1.0",
"prettier": "^2.3.1",
"proxyquire": "^2.1.3",
"restify-clients": "^3.1.0",
"sinon": "^9.0.3"
},
"keywords": [
"fxa",
"firefox",
"firefox-accounts",
"backend",
"storage",
"mysql"
]
}