generated from stanleygomes/nodevader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "endor-cli",
"version": "1.0.9",
"description": "Come to the javascript side 🚀 🌑",
"private": false,
"preferGlobal": true,
"main": "./src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"test": "NODE_ENV=test eslint . && cd ./src && mocha"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bin": {
"endor-cli": "src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stanleygomes/endor-cli"
},
"author": "stanleygomes",
"license": "MIT",
"bugs": {
"url": "https://github.com/stanleygomes/endor-cli"
},
"homepage": "https://github.com/stanleygomes/endor-cli",
"dependencies": {
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"commander": "^6.0.0",
"dotenv": "^8.2.0",
"figlet": "^1.5.0",
"i18n": "^0.8.3",
"inquirer": "^7.3.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^6.1.4"
}
}