-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1011 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
{
"name": "@knockaway/sqsiphon",
"main": "index.js",
"version": "1.2.0",
"homepage": "https://github.com/knockaway/sqsiphon",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/knockaway/sqsiphon.git"
},
"dependencies": {
"abstract-logging": "^2.0.1",
"opentracing": "^0.14.5"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"tap": "^15.0.9"
},
"scripts": {
"check-format": "prettier --list-different '*.js' 'lib/**/*.js'",
"format": "prettier --write '*.js' 'lib/**/*.js'",
"lint": "eslint '*.js' 'lib/**/*.js'",
"test": "LOG_LEVEL=silent tap --no-cov",
"test:cov": "LOG_LEVEL=silent tap",
"test:cov:html": "LOG_LEVEL=silent tap --coverage-report=html",
"test:watch": "LOG_LEVEL=silent tap -n -w --no-coverage-report"
},
"precommit": [
"lint",
"test"
]
}