-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 954 Bytes
/
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
{
"name": "smart-tools",
"version": "1.1.2",
"description": "S.M.A.R.T. (Simplified Memory & Assembly Reference Tool) - A set of tools designed for educational purposes to provide a clear understanding of assembly language and virtual machine operations.",
"main": "smart-vm.js",
"scripts": {
"start": "node ./server.mjs",
"lint": "eslint src/* public/js/*",
"lint:fix": "eslint src/* public/js/* --fix",
"pages": "bash ./build-pages.sh"
},
"files": [
"src/"
],
"bin": {
"smart-assembler": "./src/smart-assembler.mjs",
"smart-disassemble": "./src/smart-disassemble.mjs",
"smart-vm": "./src/smart-vm.mjs"
},
"author": "Yaacov Zamir <[email protected]>",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.1",
"express": "^4.18.2"
},
"dependencies": {
"yargs": "^17.7.2"
}
}