-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 984 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
41
{
"name": "@simplybusiness/twiglet",
"version": "2.1.1",
"description": "A simple JSON-logging micro-library for services",
"main": "logger.js",
"scripts": {
"test": "jshint *.js && jasmine spec/*.js",
"coverage": "npx nyc --reporter=lcov --reporter=text-summary npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplybusiness/twiglet-node.git"
},
"keywords": [
"JSON",
"logging",
"service"
],
"author": "SimplyBusiness",
"contributors": [
"@sleepyfox <[email protected] (https://github.com/sleepyfox)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/simplybusiness/twiglet-node/issues"
},
"homepage": "https://github.com/simplybusiness/twiglet-node#readme",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"jasmine": "3.x",
"jshint": "2.x",
"nyc": "15.x"
},
"jshintConfig": {
"esversion": 10,
"asi": true
},
"dependencies": {}
}