mirror of
https://github.com/HackPlan/google-auth-library-nodejs.git
synced 2026-01-12 22:44:19 +08:00
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "google-auth-library",
|
|
"version": "0.9.9",
|
|
"author": "Google Inc.",
|
|
"description": "Google APIs Authentication Client Library for Node.js",
|
|
"contributors": [
|
|
{
|
|
"name": "Jason Allor",
|
|
"email": "jasonall@google.com"
|
|
},
|
|
{
|
|
"name": "Jason Dobry",
|
|
"email": "jason.dobry@gmail.com"
|
|
},
|
|
{
|
|
"name": "Tim Emiola",
|
|
"email": "temiola@google.com"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
},
|
|
"main": "./lib/auth/googleauth",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/google/google-auth-library-nodejs.git"
|
|
},
|
|
"keywords": [
|
|
"google",
|
|
"api",
|
|
"google apis",
|
|
"client",
|
|
"client library"
|
|
],
|
|
"dependencies": {
|
|
"async": "~1.4.2",
|
|
"gtoken": "^1.1.0",
|
|
"lodash.noop": "~3.0.0",
|
|
"jws": "~3.0.0",
|
|
"request": "~2.74.0",
|
|
"string-template": "~0.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"coveralls": "^2.11.1",
|
|
"istanbul": "~0.3.2",
|
|
"keypair": "~1.0.0",
|
|
"jshint": "^2.5.5",
|
|
"jsdoc": "~3.3.0-alpha9",
|
|
"mkdirp": "~0.5.0",
|
|
"mocha": "^1.8.1",
|
|
"nock": "~1.9.0",
|
|
"rimraf": "^2.2.8",
|
|
"url": "~0.10.1",
|
|
"minimist": "^1.1.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "jshint lib test",
|
|
"test": "mocha --reporter spec --timeout 4000",
|
|
"generate-docs": "jsdoc -c jsdoc-conf.json ./README.md",
|
|
"prepare": "npm test && npm run lint && npm version patch",
|
|
"coverage": "istanbul cover -x 'apis/**' _mocha -- --reporter spec --timeout 4000",
|
|
"coveralls": "istanbul cover -x 'apis/**' _mocha --report lcovonly -- --reporter spec --timeout 4000 && cat coverage/lcov.info | coveralls"
|
|
},
|
|
"license": "Apache-2.0"
|
|
}
|