-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "log4js-azure-append-blob-appender",
"description": "log4js appender that write log to Azure Storage (append blob)",
"author": "Zhiyuan Wang",
"version": "1.0.1",
"tags": [
"azure",
"storage",
"log4js",
"appender"
],
"keywords": [
"node",
"azure",
"storage",
"log4js",
"appender"
],
"engines": {
"node": ">= 0.8.26"
},
"main": "appender.js",
"homepage": "https://github.com/danny8002/log4js-azure-append-blob-appender",
"repository": {
"type": "git",
"url": "[email protected]:danny8002/log4js-azure-append-blob-appender.git"
},
"bugs": {
"url": "https://github.com/danny8002/log4js-azure-append-blob-appender/issues"
},
"license": "Apache-2.0",
"dependencies": {
"azure-storage": "^1.0.1",
"log4js": "^0.6.36"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "^1.1.0",
"grunt-ts": "~5.5.0-beta.2",
"grunt-mocha-test": "^0.12.7",
"grunt-mocha": "^1.0.2",
"typescript": "~1.8.9",
"coveralls": "^2.11.4",
"istanbul": "^0.3.22"
},
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec -u bdd --no-timeouts --recursive test",
"coveralls": "npm run cover && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
}
}