-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
30
31
32
33
34
35
36
37
38
{
"name": "simplecpu",
"version": "0.0.1",
"description": "trying to make a simple virtual CPU in javascript",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "$(npm bin)/prettier --write '**/*'",
"build": "tsc --incremental",
"start": "node dist/index.js",
"prestart": "npm run build"
},
"author": "Allen Lowe",
"license": "ISC",
"dependencies": {
"@types/lodash": "4.14.168",
"@types/node": "14.14.22",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"babel-eslint": "10.1.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.0.0",
"eslint-config-walmart": "2.2.1",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-fp": "2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "2.1.2",
"@jeremejevs/file-api": "^0.10.4",
"filereader": "^0.10.3",
"lodash": "^4.17.20",
"prettier": "2.2.1",
"typescript": "4.1.3"
}
}