-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "prepper",
"version": "1.3.0",
"description": "Prepper is an event based api for pre-processing log events before routing them to your logging framework of choice",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"flat": "^6.0.1",
"lodash": "^4.17.21",
"ramda": "^0.30.1",
"require-all": "^3.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"async": "^3.2.6",
"chai": "^5.2.0",
"eslint": "^5.0.0",
"eslint-config-imperative": "^2.1.0",
"eslint-plugin-imperative": "^2.1.0",
"express": "^5.1.0",
"husky": "^9.1.7",
"mocha": "^11.6.0",
"nyc": "^17.1.0",
"on-headers": "^1.0.2",
"request": "^2.88.0"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"istanbul": "NODE_ENV=test nyc --reporter=html --reporter=text mocha",
"codeclimate": "(test -e .codeclimate && npm run istanbul && source .codeclimate && codeclimate-test-reporter < coverage/lcov.info) || echo skipping codeclimate",
"lint": "eslint .",
"precommit": "npm run lint && npm test",
"prepush": "npm run codeclimate"
},
"author": "One Beyond",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/prepper.git"
},
"keywords": [
"Logger",
"Event",
"Emitter",
"Decorator",
"Filter",
"GuideSmiths",
"OneBeyond",
"One Beyond"
],
"bugs": {
"url": "https://github.com/onebeyond/prepper/issues"
},
"homepage": "https://github.com/onebeyond/prepper#readme",
"engines": {
"node": ">=20.0.0"
}
}