forked from vectordotdev/timber-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "@timberio/winston",
"version": "0.30.0",
"description": "Timber.io - Winston transport",
"keywords": [
"Timber",
"logger",
"logging",
"node",
"winston"
],
"author": "Lee Benson <[email protected]>",
"homepage": "https://github.com/timberio/timber-js/tree/master/winston#readme",
"license": "ISC",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/es6/index.d.ts",
"sideEffects": false,
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/timberio/timber-js.git"
},
"scripts": {
"build:cjs": "tsc",
"build:es6": "tsc -p tsconfig.es6.json",
"build": "run-p build:*",
"prepublishOnly": "npm run build",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/timberio/timber-js/issues"
},
"devDependencies": {
"@timberio/node": "^0.30.0",
"npm-run-all": "^4.1.5",
"typescript": "^3.2.1",
"winston": "^3.1.0"
},
"peerDependencies": {
"@timberio/node": ">= 0.25.0",
"winston": ">= 3.0.0"
},
"dependencies": {
"@timberio/types": "^0.30.0",
"winston-transport": "^4.3.0"
}
}