forked from jeremyben/json-server-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "json-server-auth",
"description": "Authentication middleware for JSON Server",
"version": "2.0.2",
"author": "Jeremy Bensimon",
"repository": "github:jeremyben/json-server-auth",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"engineStrict": true,
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"test": "jest",
"test:file": "jest --testPathPattern",
"test:watch": "jest --watch --verbose false",
"release": "standard-version"
},
"peerDependencies": {
"json-server": "^0.15"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^8.5.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/json-server": "^0.14.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/supertest": "^2.0.9",
"@types/yargs": "^15.0.5",
"express": "^4.17.1",
"jest": "^26.0.1",
"json-server": "^0.16.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"supertest": "^4.0.2",
"tree-kill": "^1.2.2",
"ts-jest": "^26.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3",
"typescript-tslint-plugin": "^0.5.5"
},
"keywords": [
"JSON",
"server",
"fake",
"REST",
"API",
"prototyping",
"mock",
"mocking",
"test",
"testing",
"rest",
"data",
"dummy",
"sandbox",
"json-server",
"middleware",
"auth",
"authentication",
"authorization",
"jwt"
]
}