-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "checkmm",
"version": "1.1.0",
"description": "",
"main": "dist/checkmm.js",
"bin": "cli.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"metamath-test": "ts-node test/metamath-test.ts",
"metamath-test-no-update": "ts-node test/metamath-test.ts --no-update",
"prettier": "prettier --write .",
"set.mm": "ts-node src/checkmm.ts set.mm",
"start": "ts-node src/checkmm.ts",
"time": "npm run build && node cli.js set.mm | gnomon",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Antony74/checkmm-ts.git"
},
"author": "Antony74",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Antony74/checkmm-ts/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.8.0",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"gnomon": "^1.4.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "avoid"
}
}