-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 988 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
33
34
35
36
37
38
39
40
{
"name": "done-it",
"version": "0.2.0",
"description": "cli tool for logging daily work and generating reports",
"main": "index.js",
"scripts": {
"check": "tsc --noEmit",
"lint": "npx prettier --check .",
"format": "npx prettier --write .",
"build": "rimraf ./dist && npx tsc && copyfiles package.json README.md LICENSE dist/",
"test": "jest",
"dev": "ts-node ./src/index.ts"
},
"bin": {
"dit": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nealwp/dit.git"
},
"author": "nealwp",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^17.0.45",
"@types/sqlite3": "^3.1.11",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
}
}