-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 909 Bytes
/
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
{
"name": "exode",
"version": "1.0.0",
"description": "a cli tool used to kick start express applications",
"main": "./lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/Xavier577/exode-cli",
"keywords": [
"exode",
"exode-cli",
"express typescript startup",
"express nodejs"
],
"author": "joseph <josephtsegen10@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xavier577/exode-cli/issues"
},
"homepage": "https://github.com/Xavier577/exode-cli#readme",
"bin": "./lib/index.js",
"scripts": {
"build": "tsc"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"ora": "5.4.1"
},
"devDependencies": {
"@types/node": "^16.10.2",
"ts-node": "^10.2.1",
"typescript": "^4.6.3"
}
}