-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
52
{
"name": "contact-manager",
"version": "1.0.0",
"description": "Manage your contacts from Command Line",
"main": "index.js",
"preferGlobal": true,
"bin": "./contact.js",
"scripts": {
"prebuild": "rimraf build",
"build": "babel . --out-dir build/ --presets=2015 --ignore 'node_modules,firefunctions'",
"start": "nodemon --exec babel-node -- contact.js",
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wyvarn/contact-manager-cli.git"
},
"keywords": [
"Contact",
"Contact",
"CLI",
"firebase",
"google",
"cloud",
"functions"
],
"author": "Brian Lusina",
"license": "MIT",
"bugs": {
"url": "https://github.com/Wyvarn/contact-manager-cli/issues"
},
"homepage": "https://github.com/Wyvarn/contact-manager-cli#readme",
"dependencies": {
"axios": "^0.26.0",
"core-js": "^3.21.1",
"chalk": "^5.0.0",
"commander": "^9.0.0",
"inquirer": "^8.2.0",
"snyk": "^1.858.0"
"ora": "^6.1.0",
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^2.0.15",
"rimraf": "^3.0.2"
},
"snyk": true
}