-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "@mtucourses/tools",
"version": "0.1.0",
"description": "⚒️ various scripts and tools",
"main": "index.js",
"repository": "[email protected]:Michigan-Tech-Courses/tools.git",
"author": "Max Isom <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/prompts": "^2.0.9",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"typescript": "^4.1.3",
"xo": "^0.37.1"
},
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"clean": "rm -rf dist dts",
"build": "tsc",
"build:watch": "tsc --watch",
"tools:upload-fail-data": "node ./dist/upload-fail-data.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"xo --fix"
]
},
"dependencies": {
"console-table-printer": "^2.7.5",
"csv": "^5.3.2",
"csv-parse": "^4.15.1",
"got": "^11.8.1",
"ora": "^5.3.0",
"prompts": "^2.4.0",
"stream-transform": "^3.0.4"
},
"xo": {
"rules": {
"unicorn/no-process-exit": "off"
}
}
}