-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "contact",
"version": "1.0.0",
"description": "A command-line utility to manage contacts",
"main": "index.js",
"preferGlobal": true,
"bin": "./contact.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --exec ts-node -- contact.ts",
"ts-node": "ts-node contact.ts",
"build": "tsc"
},
"keywords": [],
"author": "Chidume Nnamdi <kurtwanger40@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/core-js": "^0.9.43",
"@types/node": "^8.0.47",
"@types/ora": "^1.3.1",
"nodemon": "^1.12.1",
"ts-node": "^3.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.11.0",
"@types/inquirer": "0.0.35",
"axios": "^0.16.2",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"core-js": "^2.5.1",
"inquirer": "^3.3.0",
"ora": "^1.3.0"
}
}