-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.79 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "markdown-log",
"version": "0.1.0",
"description": "Markdown Log Tracker",
"main": "commands/mlog.js",
"scripts": {
"lint": "eslint src --ext .js",
"test": "nyc mocha --require babel-register --reporter spec test/**/*.test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:mocha": "mocha --require babel-register --reporter spec test/**/*.test.js",
"test:watch": "mocha --require babel-register --reporter min test/**/*.test.js --watch",
"mocha": "mocha --require babel-register",
"eslint": "eslint",
"nyc": "nyc",
"preversion": "npm run lint && npm test",
"version": "git add src",
"postversion": "git push && git push --tags",
"mlog": "node -r babel-register src/commands/mlog.js",
"mlog-debug": "DEBUG=mlog:* node -r babel-register src/commands/mlog.js",
"server": "DEBUG=mlog:* nodemon -r babel-register -w src/server src/server/index.js",
"doc": "jsdoc -r --private -d doc --readme README.md src",
"prepare": "babel -d dist/ src",
"watch": "babel --watch -d dist/ src"
},
"author": {
"name": "Jonathan Keller",
"email": "[email protected]"
},
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/kellerj/mlog.git"
},
"bin": {
"mlog": "./dist/commands/mlog.js"
},
"files": [
"src"
],
"dependencies": {
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"cookie-parser": "^1.4.3",
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"ejs": "^2.5.7",
"express": "^4.15.5",
"less-middleware": "^2.2.1",
"marked": "^0.3.7",
"morgan": "^1.9.0",
"opn": "^5.1.0",
"serve-favicon": "^2.4.5",
"sprintf-js": "^1.1.1",
"yamprint": "^0.5.7",
"yamprint-ansi-color": "^0.5.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"nodemon": "^1.17.1",
"nyc": "^11.2.1",
"sinon": "^4.0.2",
"tmp": "^0.0.33"
},
"nyc": {
"exclude": [
"src/commands/**"
],
"include": [
"src/**"
],
"check-coverage": false,
"lines": 90,
"statements": 90,
"functions": 100,
"branches": 75,
"reporter": [
"lcov",
"text-summary",
"text",
"html"
],
"watermarks": {
"lines": [
75,
90
],
"functions": [
90,
100
],
"branches": [
50,
75
],
"statements": [
75,
90
]
},
"cache": true,
"all": true,
"report-dir": "./coverage"
}
}