2014-02-05 00:27:40 +04:00
|
|
|
{
|
|
|
|
"name": "fxa-profile-server",
|
2016-01-14 02:30:49 +03:00
|
|
|
"version": "0.53.1",
|
2014-02-05 00:27:40 +04:00
|
|
|
"private": true,
|
|
|
|
"description": "Firefox Accounts Profile service.",
|
|
|
|
"scripts": {
|
2015-04-10 01:42:30 +03:00
|
|
|
"start": "scripts/run_dev.js",
|
2014-08-06 01:37:31 +04:00
|
|
|
"test": "grunt test --node-env=test",
|
2015-02-09 22:31:48 +03:00
|
|
|
"preinstall": "./scripts/check_gm.sh",
|
2014-08-06 01:55:08 +04:00
|
|
|
"outdated": "npm outdated --depth 0"
|
2014-02-05 00:27:40 +04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2014-10-31 02:31:12 +03:00
|
|
|
"aws-sdk": "2.0.23",
|
|
|
|
"bluebird": "2.3.10",
|
2014-07-25 03:11:23 +04:00
|
|
|
"buf": "0.1.0",
|
2015-04-07 00:37:02 +03:00
|
|
|
"checksum": "0.1.1",
|
2014-07-25 03:11:23 +04:00
|
|
|
"compute-cluster": "0.0.9",
|
2015-06-10 05:03:59 +03:00
|
|
|
"convict": "0.8.0",
|
2015-07-28 21:53:36 +03:00
|
|
|
"fxa-notifier-aws": "^1.0.0",
|
2014-10-31 02:31:12 +03:00
|
|
|
"gm": "1.17.0",
|
2015-01-09 00:32:13 +03:00
|
|
|
"hapi": "7.5.3",
|
2014-10-07 21:36:08 +04:00
|
|
|
"joi": "4.7.0",
|
2015-07-28 21:53:36 +03:00
|
|
|
"mozlog": "^2.0.0",
|
2014-10-31 02:31:12 +03:00
|
|
|
"mysql": "2.5.2",
|
2015-04-07 00:32:55 +03:00
|
|
|
"mysql-patcher": "0.7.0",
|
2014-10-31 02:31:12 +03:00
|
|
|
"request": "2.47.0",
|
2014-10-07 21:36:08 +04:00
|
|
|
"stream-to-array": "2.0.2"
|
2014-02-05 00:27:40 +04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2014-07-25 03:11:23 +04:00
|
|
|
"blanket": "^1.1.6",
|
2014-11-25 06:15:37 +03:00
|
|
|
"commander": "2.5.0",
|
2015-06-18 02:17:10 +03:00
|
|
|
"eslint-config-fxa": "^1.5.0",
|
2014-07-25 03:11:23 +04:00
|
|
|
"grunt": "^0.4.3",
|
|
|
|
"grunt-cli": "^0.1.13",
|
2014-10-20 23:47:43 +04:00
|
|
|
"grunt-conventional-changelog": "~1.1.0",
|
2014-07-25 03:11:23 +04:00
|
|
|
"grunt-copyright": "^0.1.0",
|
2015-06-17 10:17:26 +03:00
|
|
|
"grunt-eslint": "^15.0.0",
|
2014-10-31 02:31:12 +03:00
|
|
|
"grunt-jscs": "^0.8.1",
|
2014-10-07 21:36:08 +04:00
|
|
|
"grunt-mocha-test": "^0.12.1",
|
2015-11-10 23:11:51 +03:00
|
|
|
"grunt-nsp": "^2.1.2",
|
2014-02-05 00:27:40 +04:00
|
|
|
"insist": "0.x",
|
2014-10-31 02:31:12 +03:00
|
|
|
"load-grunt-tasks": "^1.0.0",
|
2014-07-25 03:11:23 +04:00
|
|
|
"mkdirp": "^0.5.0",
|
|
|
|
"mocha-text-cov": "^0.1.0",
|
2015-11-09 23:29:32 +03:00
|
|
|
"nock": "^2.17.0",
|
2014-11-25 06:15:37 +03:00
|
|
|
"pngparse": "2.0.1",
|
2015-08-31 21:17:17 +03:00
|
|
|
"rimraf": "^2.4.3",
|
2014-07-25 03:11:23 +04:00
|
|
|
"through": "^2.3.4",
|
2014-10-07 21:36:08 +04:00
|
|
|
"time-grunt": "^1.0.0"
|
2014-02-05 00:27:40 +04:00
|
|
|
},
|
2015-03-22 10:16:49 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/mozilla/fxa-profile-server.git"
|
|
|
|
},
|
2014-09-19 04:11:51 +04:00
|
|
|
"bugs": "https://github.com/mozilla/fxa-profile-server/issues",
|
|
|
|
"homepage": "https://github.com/mozilla/fxa-profile-server",
|
2014-02-05 00:27:40 +04:00
|
|
|
"author": "Sean McArthur <sean.monstar@gmail.com>",
|
2014-09-19 04:11:51 +04:00
|
|
|
"engines": {
|
|
|
|
"node": ">=0.10.0"
|
|
|
|
},
|
2015-05-23 03:20:44 +03:00
|
|
|
"license": "MPL-2.0"
|
2014-02-05 00:27:40 +04:00
|
|
|
}
|