-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 911 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
42
{
"name": "pino-sapling",
"version": "1.0.0",
"description": "A template repository for Pino modules",
"main": "index.js",
"scripts": {
"test": "tap --no-cov 'test/**/*.test.js'",
"lint": "standard"
},
"precommit": [
"lint",
"test"
],
"bin": {
"myTransport": "bin.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pinojs/pino-sapling.git"
},
"keywords": [
"pino"
],
"author": "Your Name <your.name@here>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-sapling/issues"
},
"homepage": "https://github.com/pinojs/pino-sapling#readme",
"devDependencies": {
"fastbench": "^1.0.1",
"flush-write-stream": "^1.0.2",
"pre-commit": "^1.2.2",
"standard": "^9.0.0",
"tap": "^10.2.2"
},
"dependencies": {
"pump": "^1.0.2",
"split2": "^2.1.1",
"through2": "^2.0.3"
}
}