-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.63 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
62
63
64
65
66
67
{
"name": "quizizz.js",
"version": "1.1.1",
"description": "API Wrapper for quizizz",
"main": "dist/index.js",
"keywords": [
"quizizz",
"quizziz",
"quizizz api",
"quizziz api"
],
"files": [
"package.json",
"README.md",
"LICENSE",
".npmignore",
"dist/",
"webpack",
"esm/"
],
"typings": "dist/index.d.ts",
"exports": {
"import": "./esm/index.mjs",
"require": "./dist/index.js"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "npm run build && node tests/index.js",
"lint": "npx eslint src/ --fix",
"docs": "typedoc --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/Quizizz.js.git"
},
"author": "Zaid",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaida04/Quizizz.js/issues"
},
"homepage": "https://github.com/zaida04/Quizizz.js#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"ts-mocha": "^7.0.0",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@discordjs/collection": "^0.1.6",
"node-fetch": "^2.6.1"
}
}