-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 911 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
37
38
39
40
{
"name": "kbn-action",
"version": "1.7.0",
"description": "command-line utility for working with Kibana actions",
"main": "kbn-action.js",
"author": "pmuellr",
"bin": {
"kbn-el": "kbn-el.js",
"kbn-action": "kbn-action.js",
"kbn-alert": "kbn-alert.js"
},
"scripts": {
"build": "node tools/build.js",
"standard": "standard --verbose",
"test": "npm run -s standard",
"watch": "nodemon --exec 'npm run -s test'"
},
"homepage": "https://github.com/pmuellr/kbn-action",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pmuellr/kbn-action.git"
},
"dependencies": {
"chalk": "^5.2.0",
"got": "^11.8.6",
"hjson": "^3.2.2",
"meow": "^7.1.1"
},
"devDependencies": {
"nodemon": "^2.0.20",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"tmp/**/*",
"docs/**/*"
]
}
}