-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "todu",
"version": "1.0.28",
"description": "CLI to manage your Project's To-Do's",
"main": "./dist/cli.js",
"bin": {
"todu": "./dist/cli.js"
},
"keywords": [
"todu",
"todo",
"tasks",
"markdown"
],
"scripts": {
"start": "npm run build && cross-env NODE_ENV=development node dist/cli.js",
"build": "rm -rf dist/ && tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplifylabs/todu.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/simplifylabs/todu/issues"
},
"homepage": "https://github.com/simplifylabs/todu#readme",
"devDependencies": {
"@types/keypress": "^2.0.30",
"@types/node": "^17.0.31",
"@types/signal-exit": "^3.0.1",
"cross-env": "^7.0.3",
"nodemon": "^2.0.16",
"run-script-os": "^1.1.6",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"chalk": "4.0.0",
"keypress": "^0.2.1",
"onetime": "^6.0.0",
"signal-exit": "^3.0.7",
"update-check": "^1.5.4"
}
}