-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "@duosecurity/duo_universal",
"version": "2.0.3",
"description": "Node.js implementation of the Duo Universal SDK.",
"keywords": [
"duo",
"duo security"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/duosecurity/duo_universal_nodejs.git"
},
"homepage": "https://github.com/duosecurity/duo_universal_nodejs#readme",
"bugs": {
"url": "https://github.com/duosecurity/duo_universal_nodejs/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
},
"files": [
"package.json",
"dist"
],
"scripts": {
"build_for_example": "rimraf example/node_modules/@duosecurity/duo_universal && tsc --project tsconfig.build.json --outDir example/node_modules/@duosecurity/duo_universal",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build",
"lint": "eslint --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"axios": "^1.2.2",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-extended": "^3.2.3",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}