-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "filebuffer",
"version": "1.0.5",
"description": "Buffering data to file with rotating",
"main": "index.js",
"scripts": {
"lint": "eslint \"./**/*.js\"",
"lint-fix": "eslint --fix \"./**/*.js\"",
"test": "mkdir -p data && NODE_ENV=test nyc --reporter=html --reporter=text mocha **/*.test.js --bail --timeout 10000 --exit && sleep 0.5 && rm -rf ./data/*",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lookasc/filebuffer.git"
},
"keywords": [
"buffer",
"rollover",
"filebuffer",
"file",
"data",
"storage",
"rotate",
"ingest"
],
"author": "lookasc",
"license": "MIT",
"bugs": {
"url": "https://github.com/lookasc/filebuffer/issues"
},
"homepage": "https://github.com/lookasc/filebuffer#readme",
"dependencies": {
"ulid": "^2.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}