-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.48 KB
/
package.json
File metadata and controls
59 lines (59 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
57
58
59
{
"name": "ghclass",
"description": "Utilities for working with classroom.github.com",
"version": "2.0.3",
"author": "Shane K. Panter",
"license": "MIT",
"homepage": "https://github.com/shanep/ghclass#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/shanep/ghclass.git"
},
"bugs": {
"url": "https://github.com/shanep/ghclass/issues"
},
"keywords": [
"education",
"classroom.github.com"
],
"exports": {
".": "./lib/ghclass.js"
},
"bin": {
"ghc": "dist/index.js"
},
"files": [
"/lib",
"/dist"
],
"type": "module",
"scripts": {
"start": "tsx ./src/cli.ts",
"test": "node --loader tsx --test test/*.test.ts",
"test:coverage": "c8 --all --src src npm test",
"lint": "eslint .",
"build": "tsc -p .",
"dist": "ncc build src/cli.ts --license licenses.txt",
"docs": "typedoc --media media src/*.ts",
"clean": "git clean -xfd",
"build:all": "npm run build && npm run dist",
"test:all": "npm run test && npm run test:coverage",
"package": "npm run test && npm run build:all"
},
"dependencies": {
"commander": "^11.0.0",
"csv-parse": "^5.5.0"
},
"devDependencies": {
"@types/node": "^20.6.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vercel/ncc": "^0.38.0",
"c8": "^8.0.1",
"eslint": "^8.50.0",
"ts-node": "^10.9.1",
"tsx": "^3.13.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}