-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 806 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 806 Bytes
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
{
"name": "@treblle/express",
"version": "1.0.2",
"description": "The official Treblle SDK for Express",
"main": "index.js",
"types": "index.d.ts",
"devDependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8"
},
"scripts": {
"example": "node --watch examples/example",
"lint": "npx prettier --check .",
"lint:fix": "npx prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"keywords": [
"Treblle",
"Express"
],
"dependencies": {
"@treblle/utils": "^0.1.15"
},
"author": "Kelvin Omereshone<kelvin@treblle.com>",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}