-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 882 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 882 Bytes
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
{
"name": "tasker-cli",
"version": "1.0.0",
"description": "A command-line tool for executing asynchronous JavaScript task trees.",
"author": "Paul Nann",
"license": "MIT",
"main": "lib/index.js",
"bin": "lib/index.js",
"typings": "tasker-global.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnann/tasker-cli.git"
},
"bugs": {
"url": "https://github.com/pnann/tasker-cli/issues"
},
"homepage": "https://github.com/pnann/tasker-cli#readme",
"dependencies": {
"ansi-colors": "^4.1.1",
"color-support": "^1.1.3",
"tasker-lib": "file:../tasker-lib"
},
"peerDependencies": {
"ts-node": "^8.10.1"
},
"devDependencies": {
"@types/color-support": "^1.1.0",
"@types/node": "^13.13.5",
"typescript": "^3.8.3"
}
}