-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 927 Bytes
/
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
{
"name": "codyfight-game-client",
"version": "1.2.11",
"type": "module",
"description": "Easily implement Codyfight game actions. A library for interacting with game API.",
"license": "MIT",
"repository": "codyfight/codyfight-game-client",
"homepage": "https://codyfight.com/api-doc/",
"author": {
"name": "Codyfight",
"email": "[email protected]",
"url": "https://codyfight.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=14.16"
},
"files": [
"src"
],
"keywords": [
""
],
"scripts": {
"build": "rimraf ./dist && jest && tsc",
"test": "rm -rf ./dist && tsc --noEmit && jest"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"axios": "^1.2.6",
"jest": "^29.4.1",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}