-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 917 Bytes
/
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
{
"name": "clay-log",
"version": "1.5.5",
"description": "An isomorphic logging module for Clay projects",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"lint": "eslint --max-warnings 0 index.js test.js",
"mocha": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clay/clay-log.git"
},
"keywords": [
"clay",
"amphora",
"log",
"logging"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/clay/clay-log/issues"
},
"homepage": "https://github.com/clay/clay-log#readme",
"dependencies": {
"ansi-styles": "^3.2.0",
"pino": "^4.7.1"
},
"devDependencies": {
"@sentry/node": "^5.24.2",
"chai": "^4.1.2",
"dev-null": "^0.1.1",
"eslint": "^4.7.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"sinon": "^3.3.0"
}
}