forked from mozilla/fxa-auth-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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
69
70
71
72
73
74
75
{
"name": "fxa-auth-server",
"version": "1.55.1",
"description": "Firefox Accounts, an identity provider for Mozilla cloud services",
"bin": {
"fxa-auth": "./bin/key_server.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=dev CORS_ORIGIN=http://foo/ scripts/test-local.sh && grunt",
"start": "NODE_ENV=dev scripts/start-local.sh 2>&1",
"start-mysql": "NODE_ENV=dev scripts/start-local-mysql.sh 2>&1",
"test-quick": "npm run tq",
"tq": "NODE_ENV=dev tap test/local 2>/dev/null && NODE_ENV=dev CORS_ORIGIN=https://bar/ scripts/test-remote-quick.js",
"test-remote": "MAILER_HOST=restmail.net MAILER_PORT=80 CORS_ORIGIN=http://baz/ tap --timeout=300 --tap test/remote"
},
"repository": {
"type": "git",
"url": "git://github.com/mozilla/fxa-auth-server.git"
},
"bugs": "https://github.com/mozilla/fxa-auth-server/issues/",
"homepage": "https://github.com/mozilla/fxa-auth-server/",
"license": "MPL-2.0",
"author": "Mozilla (https://mozilla.org/)",
"readmeFilename": "README.md",
"dependencies": {
"aws-sdk": "2.2.10",
"binary-split": "0.1.2",
"bluebird": "2.10.2",
"convict": "1.0.1",
"envc": "2.4.0",
"fxa-auth-mailer": "git+https://github.com/mozilla/fxa-auth-mailer.git#master",
"fxa-jwtool": "0.7.1",
"hapi": "8.8.1",
"hapi-auth-hawk": "2.0.0",
"hapi-fxa-oauth": "2.2.0",
"hkdf": "0.0.2",
"joi": "6.9.1",
"mozlog": "2.0.2",
"node-statsd": "0.1.1",
"openid": "1.0.0",
"poolee": "1.0.0",
"request": "2.65.0",
"scrypt-hash": "1.1.13",
"through": "2.3.8",
"ua-parser": "0.3.5",
"uuid": "1.4.1"
},
"devDependencies": {
"ass": "git://github.com/jrgm/ass.git#5be99ee7abc9fcf63f9ebcc37b151b9c822146d1",
"commander": "2.8.1",
"eslint-config-fxa": "1.6.0",
"fxa-auth-db-mysql": "git+https://github.com/mozilla/fxa-auth-db-mysql.git#master",
"fxa-conventional-changelog": "1.1.0",
"grunt": "0.4.5",
"grunt-bump": "0.3.1",
"grunt-cli": "0.1.13",
"grunt-conventional-changelog": "5.0.0",
"grunt-copyright": "0.2.0",
"grunt-eslint": "15.0.0",
"grunt-nsp": "2.1.2",
"hawk": "2.3.1",
"jws": "3.0.0",
"load-grunt-tasks": "3.1.0",
"mailparser": "0.5.1",
"nock": "1.7.1",
"proxyquire": "1.6.0",
"simplesmtp": "0.3.35",
"sinon": "1.15.4",
"sjcl": "1.0.2",
"tap": "0.7.1"
}
}