-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 913 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 913 Bytes
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
{
"name": "@sourcegraph/coding-exercise-submitter",
"description": "CLI to submit coding exercise solutions",
"version": "1.0.1",
"license": "Apache-2.0",
"engines": {
"node": "^24.14.1"
},
"bin": {
"submit-sourcegraph-coding-exercise": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/coding-exercise-submitter.git",
"directory": "cli"
},
"files": [
"dist"
],
"scripts": {
"build": "../node_modules/.bin/tsc -p .",
"watch": "../node_modules/.bin/tsc -p . -w"
},
"devDependencies": {
"@sourcegraph/eslint-config": "^0.20.19",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/tsconfig": "^4.0.1",
"@types/inquirer": "^7.3.1",
"@types/tar": "^4.0.4"
},
"dependencies": {
"chalk": "^4.1.0",
"got": "^11.8.1",
"inquirer": "^7.3.3",
"ora": "^5.3.0",
"tar": "^6.1.0"
}
}