-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.27 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
53
54
55
56
57
{
"name": "@moneytree/sumologic-client",
"version": "0.3.1",
"description": "JavaScript client for Sumo Logic Search Job API",
"license": "ISC",
"repository": "moneytree/sumologic-client",
"main": "index.js",
"author": {
"name": "Vadim Burlakin",
"email": "vburlakin@moneytree.jp"
},
"files": [
"src"
],
"scripts": {
"test": "jest --runInBand",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"prerelease": "npm run lint && npm test",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"sumologic",
"moneytree"
],
"dependencies": {
"axios": "0.19.0",
"debug": "4.1.1",
"moment": "2.24.0",
"moment-timezone": "0.5.26"
},
"devDependencies": {
"@moneytree/eslint-config": "0.4.3",
"documentation": "12.0.2",
"eslint": "6.0.0",
"husky": "2.4.1",
"jest": "24.8.0",
"lint-staged": "8.2.1",
"nock": "10.0.6",
"open-cli": "5.0.0",
"standard-version": "8.0.1"
}
}