-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.05 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.05 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
{
"name": "CenturionJS",
"version": "0.1",
"description": "Typescript Emulator for the Centurion Minicomputer",
"scripts": {
"start": "cd build; node ./emulator.js",
"build": "rimraf ./build && tsc",
"package": "./node_modules/.bin/esbuild src/emulator.ts --bundle --outfile=out.js --platform=node --external:sprintf-js --external:./debug",
"terser": "terser -m -c --toplevel --rename -o emulator.js out.js",
"lint": "eslint src --ext .ts",
"format": "prettier --config .prettierrc --ignore-path .gitignore --write \"src/**/*.ts\""
},
"dependencies": {
"@types/node": "^17.0.30",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@types/sprintf-js": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"esbuild": "^0.14.42",
"eslint": "^8.14.0",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
},
"author": "Draco Drake",
"license": "GPL-2"
}