This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@lightlabs/ryder-cli-proto",
"version": "0.0.4",
"description": "A command-line interface to manage Ryder prototype devices.",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ryder-cli-proto",
"plugins": [
"@oclif/plugin-help"
]
},
"bin": {
"ryder-cli-proto": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"oclif-gen": "npx --yes @oclif/dev-cli readme",
"prepare": "npm run oclif-gen && npm run build",
"test": "mocha --require ts-node/register \"test/**/*.test.ts\"",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts --quiet",
"build": "tsc -p .",
"local": "npm i -g . && ryder-cli-proto",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Light-Labs/ryder-cli-proto.git"
},
"author": "Marvin Janssen",
"contributors": [
"Marvin Janssen",
"Chaz Kiker <[email protected]> (https://github.com/chazkiker2)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Light-Labs/ryder-cli-proto/issues"
},
"homepage": "https://github.com/Light-Labs/ryder-cli-proto#readme",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@oclif/test": "^1.2.8",
"@types/clear": "^0.1.1",
"@types/figlet": "^1.5.1",
"@types/inquirer": "^7.3.1",
"@types/node-fetch": "^2.5.10",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"figlet": "^1.5.0",
"inquirer": "^8.1.0",
"node-fetch": "^2.6.1",
"ryderserial-proto": "^0.0.2",
"tslib": "^1.14.1"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"ts-mocha": "^8.0.0",
"ts-node": "^7.0.1",
"typescript": "^4.3.2"
}
}