-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.31 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
51
52
53
54
55
{
"name": "@autotelic/fastify-timestamp-signer",
"version": "0.1.2",
"description": "A fastify plugin for signing and validating strings",
"main": "index.js",
"files": [
"index.js",
"lib/constants.js",
"index.d.ts"
],
"types": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap --100 -j1 -R classic test/*.test.js",
"example": "fastify start example.js",
"lint": "standard",
"fix": "npm run lint -- --fix",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-timestamp-signer.git"
},
"keywords": [],
"author": "Autotelic Development Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-timestamp-signer/issues"
},
"homepage": "https://github.com/autotelic/fastify-timestamp-signer#readme",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"fastify": "^3.0.0",
"fastify-cli": "^2.5.1",
"husky": "^4.3.8",
"lint-staged": "^10.2.11",
"sinon": "^9.2.3",
"standard": "^14.3.4",
"tap": "^14.0.0"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
}
}