-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 825 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
32
{
"name": "typescript-chip8",
"version": "1.0.0",
"description": "A Chip8 Emulator, written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/mikeyhogarth/chip8-typescript",
"prepublish": "npm run build",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest"
},
"author": "Mikey H",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"babel-jest": "^27.0.6",
"coveralls": "^3.1.1",
"jest": "^27.0.6",
"tslint": "^6.1.3",
"typescript": "^4.3.5"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/globalSetup.ts"
]
}
}