-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
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
{
"name": "@veracity/node-auth",
"version": "3.0.11",
"description": "A library for authenticating with Veracity and retrieving one or more access tokens for communicating with APIs.",
"scripts": {
"build:copy-files": "ts-node -T scripts/copy-files.ts",
"build:types": "ts-node -T scripts/add-types-to-readme.ts",
"build:toc": "markdown-toc -i README.md",
"build:tsc": "rimraf dist && tsc --build tsconfig.json",
"build": "npm run build:tsc && npm run build:types && npm run build:toc && npm run build:copy-files",
"test": "jest",
"lint:lockfile": "npx lockfile-lint --type npm --path ./package-lock.json --validate-https --validate-integrity --validate-checksum --allowed-hosts registry.npmjs.org",
"test:watch": "jest --watch",
"lint": "npm run lint:lockfile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veracity/node-auth.git"
},
"keywords": [
"veracity",
"authentication",
"openid",
"node",
"typescript",
"javascript"
],
"author": "Veracity",
"license": "MIT",
"bugs": {
"url": "https://github.com/veracity/node-auth/issues"
},
"homepage": "https://developer.veracity.com",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^4.0.0",
"lodash.omit": "^4.5.0",
"passport-azure-ad": "^4.3.0",
"queue-microtask": "1.2.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jest": "^26.0.24",
"@types/lodash.omit": "^4.5.6",
"@types/node": "^14.0.27",
"@types/node-forge": "^0.10.2",
"@types/passport": "^1.0.7",
"@types/passport-azure-ad": "^4.3.0",
"@types/supertest": "^2.0.11",
"fast-glob": "^3.2.7",
"jest": "^27.0.6",
"markdown-toc": "^1.2.0",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"optionalDependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"node-forge": "^0.10.0",
"passport": "^0.4.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"bail": 1,
"rootDir": "./src"
}
}