forked from ruimarinho/authy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.62 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "authy-client",
"version": "1.1.2",
"description": "A complete Authy client with support for TOTP, OneTouch, Phone Verification and Phone Intelligence APIs",
"keywords": [
"2 factor",
"2fa",
"2step",
"auth",
"authentication",
"authy",
"client",
"co",
"two factor",
"two step",
"two-factor"
],
"homepage": "https://github.com/ruimarinho/authy-client",
"bugs": "https://github.com/ruimarinho/authy-client/issues",
"license": "MIT",
"author": {
"name": "Rui Marinho",
"url": "https://github.com/ruimarinho"
},
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ruimarinho/authy-client.git"
},
"bin": {
"authy": "dist/src/bin/cli.js"
},
"scripts": {
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release && sed -i '' -e :a -e '$d;N;2,4ba' -e 'P;D' CHANGELOG.md",
"coverage": "nyc --reporter=html --reporter=text npm test",
"lint": "eslint src test",
"prepublish": "npm run transpile",
"test": "NODE_ENV=test mocha $npm_package_options_mocha",
"testdocker": "docker-compose run --rm sut",
"transpile": "rm -rf dist/* && babel src --out-dir dist/src && babel test --out-dir dist/test && cp package.json dist/",
"version": "npm run changelog --future-release=$npm_package_version && npm run transpile && git add -A CHANGELOG.md dist"
},
"dependencies": {
"@uphold/request-logger": "^2.0.0",
"bluebird": "^3.4.6",
"debugnyan": "^1.0.0",
"google-libphonenumber": "^3.2.1",
"lodash": "^4.16.2",
"prettyjson": "^1.2.1",
"qs": "^6.2.1",
"request": "^2.75.0",
"standard-http-error": "^2.0.0",
"urijs": "^1.18.2",
"url-escape-tag": "^1.0.0",
"validator": "^9.2.0",
"validator.js": "^2.0.3",
"validator.js-asserts": "^3.0.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^8.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-module-method": "^6.8.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.14.0",
"eslint": "^4.14.0",
"eslint-config-uphold": "^0.1.0",
"mocha": "^4.1.0",
"nock": "^9.1.5",
"nyc": "^11.4.1",
"pre-commit": "^1.1.3",
"should": "^13.2.0"
},
"engines": {
"node": ">=4"
},
"nyc": {
"include": [
"src/"
],
"report-dir": "./coverage"
},
"options": {
"mocha": "--recursive --require babel-register --require should"
},
"pre-commit": [
"lint"
]
}