-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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": "@julienr2/toolkit",
"version": "1.3.14",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"ts-node": "ts-node --files",
"tsc": "tsc --noEmit",
"test": "jest",
"dev": "tsc -w",
"build": "rm -rf lib && tsc",
"prepare": "yarn tsc && yarn test && yarn version --patch && yarn build"
},
"bin": {
"tk": "./lib/index.js",
"toolkit": "./lib/index.js"
},
"files": [
"lib"
],
"dependencies": {
"chalk": "^4.1.0",
"configstore": "^5.0.0",
"fuzzy": "^0.1.3",
"glob": "^7.1.6",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.0.1",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"octonode": "^0.10.2",
"omelette": "^0.4.17"
},
"devDependencies": {
"@types/configstore": "^5.0.1",
"@types/glob": "^7.1.4",
"@types/inquirer-autocomplete-prompt": "^1.3.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/minimist": "^1.2.2",
"@types/node": "^16.7.5",
"@types/omelette": "^0.4.1",
"@types/shell-quote": "^1.7.1",
"cowsay": "^1.5.0",
"jest": "^27.1.0",
"shell-quote": "^1.7.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"packageManager": "yarn@3.2.0"
}