forked from duosecurity/duo_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 KB
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
{
"name": "@duosecurity/duo_web",
"version": "1.0.5",
"license": "BSD-3-Clause",
"description": "Duo two-factor authentication for Node.js web applications",
"homepage": "https://www.duosecurity.com/docs/duoweb",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/duosecurity/duo_nodejs.git"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./tests/*",
"lint": "eslint duo.js index.js tests/ demos/"
},
"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",
"nodeunit": ">= 0.8.6"
},
"dependencies": {},
"keywords": [
"Duo Security",
"Two-Factor Authentication"
],
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/duosecurity/duo_nodejs/issues"
},
"licenses": [
{
"type": "Duo License",
"url": "https://github.com/duosecurity/duo_nodejs/blob/master/LICENSE"
}
]
}