-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.13 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
{
"name": "elasticio-cli",
"description": "Command-line interface for elastic.io components",
"version": "2.1.0",
"engines": {
"node": ">= 12"
},
"scripts": {
"test": "mocha spec/. spec-integration/.",
"coverage": "nyc --reporter=html --reporter=text mocha spec/. spec-integration/.",
"postinstall": "echo 'Object.assign(exports, require(\"./packages/inquirer/lib/inquirer\"));' > node_modules/inquirer/index.js"
},
"bin": {
"elasticio": "./elasticio"
},
"main": "./lib/elasticio.js",
"dependencies": {
"caporal": "git://github.com/elasticio/Caporal.js#92c446e74edb3e489985292604f24dc56a64f205",
"chalk": "3.0.0",
"dotenv": "8.2.0",
"handlebars": "4.5.3",
"inquirer": "git://github.com/elasticio/Inquirer.js#707b235136dde68e07a6d0e371cf4b28db42f047",
"jsonschema": "1.2.5",
"lodash": "4.17.15",
"properties-parser": "0.3.1"
},
"devDependencies": {
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"mocha": "6.2.2",
"nyc": "14.1.1",
"sinon": "7.5.0"
}
}