-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 755 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 755 Bytes
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": "gameboy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"run": "tsc -p tsconfig.json --outDir ./bin && node bin/src/main.js",
"test": "jest --collectCoverage",
"clean": "find ./src -type f -name \"*.js\" -o -name \"*.map\" -exec rm -rf {} \\;"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.5",
"jest": "^27.0.5"
},
"dependencies": {
"install": "^0.13.0",
"npm": "^7.19.1",
"ts-pattern": "^3.2.1",
"typescript": "^4.3.4"
}
}