forked from mozilla/fxa-auth-db-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "fxa-auth-db-mysql",
"version": "0.53.0",
"description": "MySQL backend for the fxa-auth-db-server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/fxa-auth-db-mysql"
},
"bin": {
"fxa-auth-db-mysql": "bin/db_patcher.js"
},
"scripts": {
"test": "npm run test-mysql && npm run test-mem && npm run test-server",
"test-mysql": "grunt && node ./bin/db_patcher.js >/dev/null && ./scripts/tap-coverage.js test/backend test/local",
"test-mem": "./scripts/tap-coverage.js test/mem",
"test-server": "./scripts/tap-coverage.js fxa-auth-db-server/test/local",
"start": "node ./bin/db_patcher.js >/dev/null && node ./bin/server.js",
"start-mem": "node ./bin/mem",
"outdated": "npm outdated --depth 0"
},
"author": "Mozilla (https://mozilla.org/)",
"homepage": "https://github.com/mozilla/fxa-auth-db-mysql",
"bugs": {
"url": "https://github.com/mozilla/fxa-auth-db-mysql/issues"
},
"license": "MPL-2.0",
"dependencies": {
"bluebird": "2.1.3",
"clone": "0.2.0",
"convict": "1.0.1",
"fxa-jwtool": "0.7.1",
"mozlog": "2.0.2",
"mysql": "2.10.0",
"request": "2.53.0",
"restify": "4.0.3"
},
"devDependencies": {
"ass": "git://github.com/jrgm/ass.git#5be99ee",
"eslint-config-fxa": "1.2.0",
"grunt": "0.4.5",
"grunt-bump": "0.3.0",
"grunt-copyright": "0.2.0",
"grunt-eslint": "14.0.0",
"grunt-nsp": "2.1.0",
"load-grunt-tasks": "0.6.0",
"mysql-patcher": "0.7.0",
"nock": "1.2.0",
"proxyquire": "1.7.0",
"sinon": "1.16.0",
"tap": "2.3.1"
},
"keywords": [
"fxa",
"firefox",
"firefox-accounts",
"backend",
"storage",
"mysql"
]
}