Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.7 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "streamroller",
|
---|
3 | "version": "2.2.4",
|
---|
4 | "description": "file streams that roll over when size limits, or dates are reached",
|
---|
5 | "main": "lib/index.js",
|
---|
6 | "directories": {
|
---|
7 | "test": "test"
|
---|
8 | },
|
---|
9 | "scripts": {
|
---|
10 | "codecheck": "eslint \"lib/*.js\" \"test/*.js\"",
|
---|
11 | "prepublishOnly": "npm test",
|
---|
12 | "pretest": "npm run codecheck",
|
---|
13 | "clean": "rm -rf node_modules/",
|
---|
14 | "test": "nyc --check-coverage --lines 100 --branches 100 --functions 100 mocha",
|
---|
15 | "html-report": "nyc report --reporter=html"
|
---|
16 | },
|
---|
17 | "repository": {
|
---|
18 | "type": "git",
|
---|
19 | "url": "https://github.com/nomiddlename/streamroller.git"
|
---|
20 | },
|
---|
21 | "keywords": [
|
---|
22 | "stream",
|
---|
23 | "rolling"
|
---|
24 | ],
|
---|
25 | "author": "Gareth Jones <gareth.nomiddlename@gmail.com>, Huang Yichao <ihuangyichao@outlook.com>",
|
---|
26 | "license": "MIT",
|
---|
27 | "readmeFilename": "README.md",
|
---|
28 | "gitHead": "ece35d7d86c87c04ff09e8604accae81cf36a0ce",
|
---|
29 | "devDependencies": {
|
---|
30 | "@commitlint/cli": "^8.1.0",
|
---|
31 | "@commitlint/config-conventional": "^8.1.0",
|
---|
32 | "eslint": "^6.0.1",
|
---|
33 | "husky": "^3.0.0",
|
---|
34 | "mocha": "^6.1.4",
|
---|
35 | "nyc": "^14.1.1",
|
---|
36 | "proxyquire": "^2.1.1",
|
---|
37 | "should": "^13.2.3"
|
---|
38 | },
|
---|
39 | "dependencies": {
|
---|
40 | "date-format": "^2.1.0",
|
---|
41 | "debug": "^4.1.1",
|
---|
42 | "fs-extra": "^8.1.0"
|
---|
43 | },
|
---|
44 | "engines": {
|
---|
45 | "node": ">=8.0"
|
---|
46 | },
|
---|
47 | "commitlint": {
|
---|
48 | "extends": [
|
---|
49 | "@commitlint/config-conventional"
|
---|
50 | ]
|
---|
51 | },
|
---|
52 | "eslintConfig": {
|
---|
53 | "env": {
|
---|
54 | "browser": false,
|
---|
55 | "node": true,
|
---|
56 | "es6": true,
|
---|
57 | "mocha": true
|
---|
58 | },
|
---|
59 | "parserOptions": {
|
---|
60 | "ecmaVersion": 8
|
---|
61 | },
|
---|
62 | "extends": "eslint:recommended",
|
---|
63 | "rules": {
|
---|
64 | "no-console": "off"
|
---|
65 | }
|
---|
66 | },
|
---|
67 | "husky": {
|
---|
68 | "hooks": {
|
---|
69 | "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
|
---|
70 | }
|
---|
71 | }
|
---|
72 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.