-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
85 lines (85 loc) · 1.84 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
84
85
{
"name": "streamroller",
"version": "3.0.6",
"description": "file streams that roll over when size limits, or dates are reached",
"main": "lib/index.js",
"files": [
"lib",
"CHANGELOG.md"
],
"directories": {
"test": "test"
},
"scripts": {
"codecheck": "eslint \"lib/*.js\" \"test/*.js\"",
"prepublishOnly": "npm test",
"pretest": "npm run codecheck",
"clean": "rm -rf node_modules/",
"test": "nyc --check-coverage mocha",
"html-report": "nyc report --reporter=html"
},
"repository": {
"type": "git",
"url": "https://github.com/nomiddlename/streamroller.git"
},
"keywords": [
"stream",
"rolling"
],
"author": "Gareth Jones <[email protected]>, Huang Yichao <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "ece35d7d86c87c04ff09e8604accae81cf36a0ce",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.23",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"should": "^13.2.3"
},
"dependencies": {
"date-format": "^4.0.6",
"debug": "^4.3.4",
"fs-extra": "^10.0.1"
},
"engines": {
"node": ">=8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"env": {
"browser": false,
"node": true,
"es6": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"nyc": {
"include": [
"lib/**"
],
"branches": 100,
"lines": 100,
"functions": 100
}
}