forked from pmuellr/kbn-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 879 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
{
"name": "kbn-action",
"version": "1.2.0",
"description": "command-line utility for working with Kibana actions",
"main": "kbn-action.js",
"author": "pmuellr",
"bin": {
"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": {
"got": "^9.6.0",
"meow": "^5.0.0",
"sloppy-json": "pmuellr/sloppy-json"
},
"devDependencies": {
"nodemon": "^1.19.1",
"standard": "^13.1.0"
},
"standard": {
"ignore": [
"tmp/**/*",
"docs/**/*"
]
}
}