-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.73 KB
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
{
"name": "edu-exam-cli",
"version": "1.0.5",
"description": "Tool to get your time restricted edupage tests instantly.",
"main": "bin/eduhack.js",
"scripts": {
"build": "npm run lint && rimraf ./lib && tsc -p .",
"start": "nodemon",
"create": "npm run build && npm run check",
"check": "npm i -g && eduhack",
"lint": "eslint ./src --quiet --ext .ts",
"lint-tests": "eslint ./tests --quiet --ext .test.ts",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "npm run lint-tests && mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"author": "@lmpsk",
"contributors": [
"@UrWo"
],
"files": [
"./lib/**/*"
],
"license": "MIT",
"bin": {
"eduhack": "./lib/src/eduhack.js"
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.0.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"lolcatjs": "^2.4.0",
"ora": "^4.0.4",
"path": "^0.12.7",
"puppeteer": "^3.0.4"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/figlet": "^1.2.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/puppeteer": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-snakecasejs": "^2.2.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"repository": {
"type": "git",
"url": "git://github.com/lampask/EduCli.git"
}
}