forked from mozilla/fxa-auth-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.13 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
{
"name": "fxa-auth-server",
"version": "0.11.1",
"description": "An identity provider for PiCL services",
"bin": {
"fxa-auth": "./bin/key_server.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=dev scripts/test-local.sh",
"start": "NODE_ENV=dev scripts/start-local.sh 2>&1 | bunyan -o short",
"test-mysql": "DB_BACKEND=mysql CUSTOMS_SERVER_URL=http://127.0.0.1:7000 npm test",
"test-all": "npm run test-quick && npm run test-mysql && grunt",
"test-quick": "npm run tq",
"tq": "NODE_ENV=dev tap test/local && NODE_ENV=dev scripts/test-remote-quick.js",
"test-remote": "MAILER_HOST=restmail.net MAILER_PORT=80 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",
"engines": {
"node": "0.10.x"
},
"dependencies": {
"aws-sdk": "2.0.0-rc11",
"binary-split": "0.1.2",
"bunyan": "0.22.1",
"compute-cluster": "git://github.com/dannycoates/node-compute-cluster.git#0222a742",
"convict": "0.4.2",
"handlebars": "1.3.0",
"hapi": "2.6.0",
"hapi-auth-hawk": "1.0.0",
"hkdf": "0.0.2",
"jwcrypto": "0.4.4",
"mysql": "2.1.0",
"nodemailer": "0.6.1",
"p-promise": "0.2.5",
"request": "2.34.0",
"scrypt-hash": "1.1.8",
"through": "2.3.4",
"toobusy": "0.2.4",
"uuid": "1.4.1",
"fxa-customs-server": "git://github.com/dannycoates/fxa-customs-server.git#74d7b8d6"
},
"devDependencies": {
"ass": "0.0.4",
"awsbox": "0.7.0",
"awsboxen": "0.5.2",
"grunt": "0.4.4",
"grunt-cli": "0.1.13",
"grunt-contrib-jshint": "0.9.2",
"grunt-copyright": "0.1.0",
"grunt-nsp-shrinkwrap": "0.0.3",
"hawk": "2.1.0",
"lazysmtp": "git://github.com/dannycoates/node-lazysmtp.git#9bb3712992",
"load-grunt-tasks": "0.4.0",
"mailparser": "0.4.1",
"sjcl": "1.0.0",
"tap": "0.4.8"
}
}