-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.32 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "68kcounter",
"version": "3.2.0",
"description": "68000 ASM source code cycle counter",
"keywords": [
"68000",
"assembly",
"asm",
"optimization",
"amiga",
"commodore",
"fs-uae",
"win-uae"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepare": "husky install"
},
"main": "dist/index.js",
"bin": {
"68kcounter": "dist/cli.js"
},
"author": "Graham Bates <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grahambates/68kcounter.git"
},
"devDependencies": {
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/yargs": "^17.0.24",
"chalk": "^4.1.0",
"expression-eval": "^4.0.0",
"json5": "^2.2.0",
"yargs": "^17.7.2"
}
}