-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 KB
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": "node_cli_package",
"version": "0.1.1",
"description": "Experiment in developing a cli package using nodejs.",
"main": "index.js",
"private": true,
"type": "module",
"scripts": {
"test": "echo \"This is a test\""
},
"keywords": [
"cli",
"experiment"
],
"author": "Carl C.",
"license": "ISC",
"dependencies": {
"@types/node": "^16.4.3",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"commander": "^8.0.0",
"dotenv": "^10.0.0",
"figlet": "^1.5.0",
"fs-extra": "^10.0.0",
"got": "^9.6.0",
"json5": "^2.2.0",
"lodash": "^4.17.21",
"markdown-it": "^10.0.0",
"minimist": "^1.2.5",
"node-fetch": "^2.6.1",
"node-powershell": "^4.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"ava": "^3.15.0",
"esbuild": "^0.13.13",
"eslint": "^8.3.0",
"grunt": "^1.4.1",
"jsdoc": "^3.6.7",
"ts-node": "^10.1.0",
"tslib": "^1.14.1",
"typedoc": "^0.21.4",
"typescript": "^4.4.4",
"xo": "^0.46.4"
}
}