This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.52 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
{
"name": "az-tenant-lookup",
"version": "1.0.0",
"description": "Lookup an AzureAD tenant ID from the domain",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"start:dev": "nodemon --config nodemon.json src/index.ts",
"lint": "eslint --fix src",
"test": "jest"
},
"keywords": [],
"author": "Will Dewhurst <[email protected]> (https://hello.wdew.uk)",
"repository": {
"type": "git",
"url": "https://github.com/dewhurst/az-tenant-lookup.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^27.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^16.6.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"jest": "^27.0.6",
"lodash": "^4.17.21",
"nodemon": "^2.0.12",
"supertest": "^6.1.5",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}