-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
42
43
44
45
46
47
{
"name": "@elfsquad/authentication",
"version": "3.0.0",
"description": "",
"scripts": {
"prepare": "npm run build",
"test": "jest",
"coverage": "jest --collectCoverage",
"build": "webpack",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elfsquad/authentication.git"
},
"author": "Elfsquad",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/Elfsquad/authentication/issues"
},
"homepage": "https://github.com/Elfsquad/authentication#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"@openid/appauth": "1.3.1"
},
"devDependencies": {
"@types/fetch-mock": "7.3.5",
"@types/jest": "27.4.1",
"fetch-mock": "^9.11.0",
"jest": "^27.1.4",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"ts-jest": "27.1.4",
"ts-loader": "^9.2.5",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2"
}
}