-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhelp.json
17 lines (17 loc) · 940 Bytes
/
help.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"assemble": "Assemble a file and write it out to a hack file: exampe usage: npm run assemble -- -i path/to/input.asm -o (optional) path/to/output.hack",
"audit:critical": "Audit npm packages for critical vulnerabilities",
"build": "build the library",
"build:copyfiles": "copy all necessary files to the build folder",
"build:clean": "remove the build folder",
"build:types": "build type definitions for the project and emit to /lib",
"build:js": "build the project with typescript",
"publish": "build project and publish tag to git",
"lint": "lint the project",
"lint:fix": "fix lint errors",
"test:watch": "run all unit tests, in watch mode",
"test": "run all unit tests",
"test:coverage": "run all unit tests, generate coverage reports in html and json and open them in the default browser",
"type:check": "check type definitions are correct",
"type:check:watch": "check type definitions in watch mode"
}