This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.27 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
{
"name": "@sakuraapi/auth-audience",
"version": "0.4.0",
"description": "Middleware to support JWT audience role for SakuraApi servers",
"main": "lib/index.js",
"types": "lib/index.d.js",
"files": [
"**/!(*.spec).js",
"**/!(*.spec).d.ts",
"!spec/**/*",
"!docs/**/*",
"lib/**"
],
"scripts": {
"coverage": "npm run istanbul:run && (open coverage/lcov-report/index.html || echo '')",
"build": "rm -rf lib/ ; tsc && npm run build:test",
"build:test": "tsc -p tsconfig.spec.json",
"istanbul": "istanbul",
"istanbul:run": "npm run build && npm run build:test && npm run istanbul cover --include-all-sources node_modules/jasmine/bin/jasmine.js",
"jasmine": "jasmine",
"lint": "npm run build:test && npm run build && npm run lint:code && npm run lint:tests",
"lint:code": "echo 'CODE LINT' ; npm run tslint -- -t stylish -c tslint.json -p tsconfig.json",
"lint:tests": "echo 'TEST LINT' ; npm run tslint -- -t stylish -c tslint.spec.json -p tsconfig.spec.json",
"prepare": "npm run build && npm test",
"test": "npm run build && npm run jasmine",
"tsc": "tsc",
"tslint": "tslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakuraapi/auth-audience.git"
},
"keywords": [
"JSON",
"Web",
"Token",
"JWT",
"SakuraApi",
"Nodejs"
],
"author": "Jean-Pierre E. Poveda",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sakuraapi/auth-audience/issues"
},
"homepage": "https://github.com/sakuraapi/auth-audience#readme",
"devDependencies": {
"@sakuraapi/core": "^0.19.5",
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.8",
"@types/jsonwebtoken": "^7.2.8",
"@types/supertest": "^2.0.5",
"@types/urlsafe-base64": "^1.0.28",
"@types/uuid": "^3.4.3",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"jasmine": "^3.2.0",
"jasmine-spec-reporter": "^4.2.1",
"source-map-support": "^0.5.8",
"supertest": "^3.1.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"colors": "^1.3.1",
"jsonwebtoken": "^8.3.0",
"mongodb": "^3.1.3",
"urlsafe-base64": "^1.0.0",
"uuid": "^3.3.2"
},
"peerDependencies": {
"@sakuraapi/core": "0.19.x",
"express": "4.x"
}
}