-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "@0xflicker/ranker",
"version": "1.0.9",
"description": "Efficient ranking",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "0xFicker <cmdrnft@protonmail.com>",
"repository": "git://github.com/0xFlicker/ranker.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest test",
"prepublishOnly": "yarn build",
"prettier": "prettier --write '**/*.{ts,js,json,md}'",
"eslint": "eslint 'src/**/*.{ts,js,json,md}'"
},
"devDependencies": {
"@shelf/jest-dynamodb": "^2.2.4",
"@types/debug": "^4.1.7",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/node-cleanup": "^2.1.2",
"@types/ramda": "^0.28.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"axios": "^0.27.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5",
"jest-diff": "^28.1.0",
"prettier": "^2.6.2",
"progress": "^2.0.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.85.0",
"@aws-sdk/lib-dynamodb": "^3.85.0",
"bottleneck": "^2.19.5",
"debug": "^4.3.4",
"es6-promise-pool": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glicko2": "^0.8.7",
"node-cleanup": "^2.1.2",
"ramda": "^0.28.0",
"uuid": "^8.3.2"
},
"files": [
"lib/**/*.js",
"lib/**/*.ts"
]
}