-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use tabs with width of 4 to format package.json
- Loading branch information
1 parent
4a0f06a
commit 080fd2c
Showing
2 changed files
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
{ | ||
"name": "hx9-control-system", | ||
"version": "1.0.0", | ||
"description": "The control system consists of the pod operation backend and control station client. See the respective README files for setup instructions.", | ||
"main": "index.js", | ||
"devDependencies": { | ||
"pre-commit": "^1.2.2" | ||
}, | ||
"scripts": { | ||
"format:cs": "cd control-station && npm run format", | ||
"format:po": "cd pod-operation && npm run format", | ||
"lint:cs": "cd control-station && npm run lint", | ||
"lint:po": "cd pod-operation && npm run lint", | ||
"test:po": "cd pod-operation && npm run test" | ||
}, | ||
"pre-commit": [ | ||
"format:cs", | ||
"format:po", | ||
"lint:cs", | ||
"lint:po", | ||
"test:po" | ||
], | ||
"author": "", | ||
"license": "ISC" | ||
"name": "hx9-control-system", | ||
"version": "1.0.0", | ||
"description": "The control system consists of the pod operation backend and control station client. See the respective README files for setup instructions.", | ||
"main": "index.js", | ||
"devDependencies": { | ||
"pre-commit": "^1.2.2" | ||
}, | ||
"scripts": { | ||
"format:cs": "cd control-station && npm run format", | ||
"format:po": "cd pod-operation && npm run format", | ||
"lint:cs": "cd control-station && npm run lint", | ||
"lint:po": "cd pod-operation && npm run lint", | ||
"test:po": "cd pod-operation && npm run test" | ||
}, | ||
"pre-commit": [ | ||
"format:cs", | ||
"format:po", | ||
"lint:cs", | ||
"lint:po", | ||
"test:po" | ||
], | ||
"author": "", | ||
"license": "ISC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "pod-operation", | ||
"version": "1.0.0", | ||
"description": "This Rust package is for the main program to be run on the pod. The program runs a finite-state machine to operate the pod components and acts as a Socket.IO server to communicate with the control station.", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "cargo clippy", | ||
"format": "cargo fmt", | ||
"test": "cargo test" | ||
}, | ||
"author": "", | ||
"license": "ISC" | ||
"name": "pod-operation", | ||
"version": "1.0.0", | ||
"description": "This Rust package is for the main program to be run on the pod. The program runs a finite-state machine to operate the pod components and acts as a Socket.IO server to communicate with the control station.", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "cargo clippy", | ||
"format": "cargo fmt", | ||
"test": "cargo test" | ||
}, | ||
"author": "", | ||
"license": "ISC" | ||
} |