-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "altd",
"version": "0.0.2",
"description": "Access log tail dispatcher",
"scripts": {
"clean": "rimraf lib",
"test": "cross-env BABEL_ENV=commonjs mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"lint": "eslint -c google src test",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"codecov": "mkdir -p .nyc_output && nyc report --reporter=text-lcov > coverage.lcov && codecov -t 3e4320c7-d0e0-46a4-bb31-d5d8d2388bc4",
"coverage": "mkdir -p .nyc_output && nyc --reporter=lcov --reporter=text npm run test",
"prepublishOnly": "npm i && npm run clean && npm run lint && npm run coverage && npm run codecov && npm run build",
"requirements-check": "node check-version.js",
"postinstall": "npm run requirements-check"
},
"bin": {
"altd": "index.js"
},
"main": "lib/altd.js",
"files": [
"lib",
"index.js",
"check-version.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/freddiefujiwara/altd.git"
},
"keywords": [
"access log",
"httpd",
"log"
],
"author": "Fumikazu Fujiwara <npm@ze.gs> (http://freddiefujiwara.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/freddiefujiwara/altd/issues"
},
"homepage": "https://github.com/freddiefujiwara/altd#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"codecov": "^3.6.5",
"cross-env": "^5.0.1",
"eslint": "^4.1.1",
"eslint-config-google": "^0.9.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"rimraf": "^2.6.1"
},
"dependencies": {
"commander": "^2.20.3",
"nodejs-tail": "^1.1.0",
"semver": "^5.7.1"
},
"engines": {
"node": ">=7.6"
}
}