-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "kahoot-api",
"version": "0.11.1",
"description": "An API for the Kahoot quiz service.",
"main": "dist/index.js",
"scripts": {
"build": "babel ./src --out-dir ./dist --source-maps --copy-files",
"test": "mocha --bail --no-timeouts --require @babel/register",
"docs": "jsdoc -r src/ -d docs",
"prepublishOnly": "npm run build",
"version": "npm run docs"
},
"repository": "https://github.com/idiidk/kahoot-api",
"author": "idiidk",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.6.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.2",
"jsdoc": "^3.6.10",
"mocha": "^6.1.4"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"axios": "^0.21.4",
"cometd": "^4.0.3",
"cometd-nodejs-client": "^1.0.2",
"core-js": "^3.2.1",
"lodash": "^4.17.15",
"tiny-emitter": "^2.1.0"
}
}