forked from duosecurity/duo_api_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "@duosecurity/duo_api",
"version": "1.0.1",
"license": "BSD-3-Clause",
"description": "Duo API SDK for Node.js applications",
"homepage": "https://www.duosecurity.com/api",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/duosecurity/duo_api_nodejs.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./tests/*",
"lint": "eslint lib/ tests/"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^5.2.0"
},
"optionalDependencies": {
"nopt": ">= 2.1.2"
},
"dependencies": {},
"keywords": [
"Duo Security",
"Two-Factor Authentication"
],
"readmeFilename": "README.md",
"bugs": {
"url": "https://www.duosecurity.com/support"
},
"licenses": [
{
"type": "Duo License",
"url": "https://github.com/duosecurity/duo_api_nodejs/blob/master/LICENSE"
}
]
}