-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1016 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1016 Bytes
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
{
"name": "island-loggers",
"version": "1.1.0-dev",
"description": "An island compatible logger that understand distributed environment",
"main": "dist/loggers.js",
"typings": "dist/loggers.d.ts",
"author": "heycalmdown <hey.calmdown@gmail.com>",
"contributors": [],
"scripts": {
"prepublish": "gulp build",
"build": "gulp build",
"watch": "gulp build && gulp watch",
"clean": "gulp clean",
"test": "gulp build && DEBUG=* jasmine",
"coverage": "gulp coverage"
},
"dependencies": {
"@types/continuation-local-storage": "^3.2.0",
"@types/jasmine": "^2.5.38",
"@types/lodash": "^4.14.39",
"@types/node": "^6.0.48",
"@types/winston": "0.0.32",
"continuation-local-storage": "^3.2.0",
"source-map-support": "^0.4.2",
"winston": "^2.2.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "^2.4.1",
"gulp-sourcemaps": "^1.6.0",
"remap-istanbul": "^0.6.4",
"std-mocks": "^1.0.1"
}
}