forked from khaled-hamam/codeforces-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "@acm-ascis/codeforces-client",
"version": "0.0.3",
"description": "Codeforces API Wrapper",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmascis/codeforces-client.git"
},
"keywords": [
"codeforces"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/acmascis/codeforces-client/issues"
},
"homepage": "https://github.com/acmascis/codeforces-client#readme",
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/randomstring": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"crypto-js": "^3.1.9-1",
"dotenv": "^8.2.0",
"randomstring": "^1.1.5"
},
"author": ""
}