-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "@rduk/logger",
"version": "1.0.3",
"description": "Logger Provider",
"engines": {
"node": ">=6.4.0"
},
"main": "lib/index.js",
"scripts": {
"lint": "standard --fix",
"pretest": "npm run lint && cp ./spec/resources/config*yml .",
"test": "istanbul cover node_modules/jasmine/bin/jasmine.js --report cobertura",
"posttest": "rm ./config*yml",
"report": "istanbul report",
"coveralls": "npm run report && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rd-uk/rduk-logger.git"
},
"keywords": [
"rduk",
"logger",
"provider"
],
"author": "RDUK <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rd-uk/rduk-logger/issues"
},
"homepage": "https://github.com/rd-uk/rduk-logger#readme",
"devDependencies": {
"@rduk/configuration": "2.x",
"@rduk/errors": "1.x",
"@rduk/provider": "3.x",
"coveralls": "3.0.1",
"istanbul": "0.4.5",
"jasmine": "3.1.0",
"standard": "11.0.1"
},
"peerDependencies": {
"@rduk/configuration": "2.x",
"@rduk/errors": "1.x",
"@rduk/provider": "3.x"
}
}