-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.4 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
{
"name": "open-trivia-db",
"version": "2.1.6",
"description": "A small and simple wrapper for the Open Trivia Database API.",
"keywords": [
"opentriviadatabase",
"opentdb",
"opentriviadb",
"trivia",
"games",
"fun",
"api",
"typescript",
"small",
"quiz"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prettier": "npm run build && prettier -w .",
"prepublishOnly": "npm run prep",
"exec": "npm run build && node .",
"test": "npm run build && npx jest",
"prep": "npm run build && npm run test && npm run prettier",
"preptest": "npm run build && npm link",
"prepare": "husky install"
},
"files": [
"dist",
"typings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Elitezen/open-trivia-db-wrapper.git"
},
"author": "Elitezen",
"license": "ISC",
"bugs": {
"url": "https://github.com/Elitezen/open-trivia-db-wrapper/issues"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^20.11.30",
"@types/node-fetch": "^2.6.2",
"husky": "^8.0.0",
"jest": "^28.1.3",
"node-fetch": "^2.6.9",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-jest": "^28.0.8",
"typescript": "^5.4.3"
},
"peerDependencies": {
"node-fetch": "^2.6.9"
},
"engines": {
"node": ">=14.0.0"
}
}