-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "@treblle/sails",
"version": "0.0.7",
"description": "Sails hook for Treblle",
"main": "index.js",
"sails": {
"isHook": true,
"hookName": "treblle"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Treblle/treblle-sails.git"
},
"keywords": [
"sails",
"api",
"api visibility",
"treblle",
"sails.js",
"hook",
"monitoring"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Treblle/treblle-sails/issues"
},
"homepage": "https://github.com/Treblle/treblle-sails#readme",
"peerDependencies": {
"sails": "^1.5.6"
},
"dependencies": {
"@treblle/utils": "^0.1.13"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "2.8.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}