-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.61 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
{
"name": "rauth",
"version": "1.1.6",
"description": "Authentication and Authorization library via JWT",
"publishConfig": {
"tag": "latest",
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "tslint -c tslint.json --project tsconfig.json",
"test": "nyc --reporter=html mocha -c -r ts-node/register --recursive src/**/*.spec.ts --reporter=list --exit",
"test:watch": "nodemon --exec nyc --reporter=html mocha -c -r ts-node/register --recursive src/**/*.spec.ts --reporter=list --exit",
"version": "tsc",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reigndesign/RAuth.git"
},
"keywords": [
"auth",
"reign",
"session control"
],
"author": "Reign (https://www.reigndesign.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/reigndesign/RAuth/issues"
},
"homepage": "https://github.com/reigndesign/RAuth#readme",
"dependencies": {
"@types/jsonwebtoken": "^8.3.2",
"@types/mongoose": "^5.3.26",
"jose": "^3.5.2",
"jsonwebtoken": "^8.5.1",
"ow": "^0.12.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/ms": "^0.7.31",
"@types/uuid": "^3.4.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"sqlite": "^3.0.3",
"typeorm": "^0.2.16"
}
}