-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "cral-cli",
"version": "2.0.0",
"description": "A CLI for registering for courses at Rutgers Univseristy.",
"main": "./src/index.js",
"scripts": {
"test": "jest --env=node",
"start": "nodemon cral.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fireteam99/RU-Reg-Helper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fireteam99/cral-cli/issues"
},
"homepage": "https://github.com/fireteam99/cral-cli#readme",
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.2",
"cli-progress": "^3.0.0",
"cli-table2": "^0.2.0",
"commander": "^2.20.0",
"inquirer": "^6.5.0",
"jsonfile": "^6.1.0",
"make-dir": "^3.0.0",
"node-notifier": "^8.0.1",
"ora": "^3.4.0",
"puppeteer": "^1.13.0"
},
"bin": {
"cral": "src/cral.js"
},
"devDependencies": {
"axios-mock-adapter": "^1.19.0",
"eslint": "^7.17.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.7",
"jest": "^24.9.0",
"lint-staged": "^10.5.3",
"nodemon": "^1.19.2",
"prettier": "2.2.1",
"prettier-plugin-jsdoc": "^0.3.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}