-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "thm-api",
"version": "1.0.8",
"description": "Unofficial TryHackMe Node.js/TypeScript library",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"gen:typedoc": "./node_modules/.bin/typedoc && sed -i \"1s/.*/# ThmApi/\" ./doc/classes/ThmApi.md",
"gen:readme": "npm run gen:typedoc ; npm run test:coverage ; echo '[![npm version](https://badge.fury.io/js/thm-api.svg)](https://badge.fury.io/js/thm-api)' > README.md ; cat coverage/badge-* >> README.md ; echo >> README.md ; cat ./doc/classes/ThmApi.md >> README.md",
"test:coverage": "npm test -- --coverage && ./node_modules/.bin/jest-coverage-badges"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fer/thm-api.git"
},
"author": "fer <fer@ferqwerty.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fer/thm-api/issues"
},
"homepage": "https://github.com/fer/thm-api#readme",
"dependencies": {
"axios": "^0.24.0",
"jest-coverage-badges": "^1.1.2"
},
"keywords": [
"NodeJS",
"TryHackMe",
"TypeScript",
"API"
],
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8"
},
"types": "./build/index.d.ts",
"directories": {
"lib": "lib"
}
}