-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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": "spike-token-manager",
"version": "0.0.5",
"description": "Spike interface for JavaScript and TypeScript",
"keywords": [
"spike",
"token",
"manager",
"get token",
"redis"
],
"author": "Alexander Gurevich",
"homepage": "https://randomize163.github.io/spike-token-manager/",
"repository": {
"type": "git",
"url": "https://github.com/Randomize163/spike-token-manager.git"
},
"bugs": {
"url": "https://github.com/Randomize163/spike-token-manager/issues",
"email": "[email protected]"
},
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"start": "node --async-stack-traces ./dist/examples/index.js",
"dev": "npm run build && npm start",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --config .prettierrc.js 'src/**/*.ts' --check",
"prettier:fix": "prettier --config .prettierrc.js 'src/**/*.ts' --write",
"clean": "rimraf dist && rimraf coverage",
"test": "NODE_TLS_REJECT_UNAUTHORIZED='0' jest",
"coverage": "npm run test -- --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc"
},
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"env-var": "^7.0.1",
"ioredis": "^4.27.3",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"p-retry": "^4.5.0"
},
"devDependencies": {
"@types/ioredis": "^4.26.4",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}