forked from jeroenouw/ExampleCLI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 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
{
"name": "pizza-cli",
"description": "An example CLI for ordering pizza's",
"license": "MIT",
"author": "Jeroen Ouwehand",
"version": "0.0.3",
"main": "./lib/index.js",
"bin": {
"pizza": "./lib/index.js"
},
"scripts": {
"audit": "lerna run audit --stream",
"audit:depcheck": "lerna run audit:depcheck --stream",
"audit:npm-check-updates": "npx npm-check-updates --errorLevel 1",
"build": "tsc -p .",
"create": "npm run build && npm run test",
"local": "sudo npm uninstall -g && sudo npm install -g && pizza",
"npm:format": "npx prettier-package-json --write package.json",
"npm:upgrade": "npx npm-check-updates -iu",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "sudo npm i -g && pizza"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^7.1.0",
"figlet": "^1.5.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^14.14.33",
"depcheck": "^1.4.0",
"lerna": "^4.0.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"keywords": [
"cli",
"nodejs",
"pizza",
"typescript"
]
}