This repository was archived by the owner on Nov 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "@bishopcais/cog-cli",
"version": "3.1.0",
"description": "CLI interface for managing cogs on a given system",
"author": "Ashwin Hamal",
"contributors": [
{
"name": "Matthew Peveler",
"email": "pevelm@rpi.edu"
}
],
"license": "MIT",
"bin": {
"cog": "dist/bin/command.js",
"crun": "dist/bin/command.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint --ext ts src",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1",
"test": "jest",
"tsc-publish": "tsc-publish"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@jest/globals": "^25.5.2",
"@types/lodash": "^4.14.138",
"@types/node": "^8.10.62",
"@types/pidusage": "^2.0.1",
"@types/socket.io-client": "^1.4.33",
"commander": "^2.20.0",
"lodash": "^4.17.19",
"pidusage": "^2.0.17",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@masterodin/eslint-config-typescript": "^2.0.0",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"jest": "^25.5.4",
"ts-jest": "^25.5.1",
"tsc-publish": "^0.5.2",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "https://github.com/bishopcais/cog-cli"
},
"publishConfig": {
"access": "public"
}
}