-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "log2splunk",
"version": "0.0.5",
"description": "Log to Splunk",
"main": "./dist/index.js",
"types": "./@types/index.d.ts",
"files": [
"dist",
"@types"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.production.json",
"pretest": "npm run lint",
"test": "nyc mocha",
"lint": "eslint src --ext .ts",
"clean": "rimraf ./dist ./@types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunyan/log2splunk.git"
},
"keywords": [
"logger",
"splunk"
],
"author": "Kun Yan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kunyan/log2splunk/issues"
},
"homepage": "https://github.com/kunyan/log2splunk#readme",
"devDependencies": {
"@types/chai": "4.3.16",
"@types/mocha": "9.1.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"chai": "4.5.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"mocha": "9.2.2",
"nock": "13.5.4",
"nyc": "15.1.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"dependencies": {
"got": "^11.8.0",
"uuid": "^8.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
]
},
"mocha": {
"extension": [
"ts"
],
"spec": "test/**/*.spec.ts",
"require": "ts-node/register"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"**/*.d.ts"
],
"reporter": "lcov"
}
}