-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "livewire-mongoose",
"version": "0.2.0",
"description": "livewire-mongoose is a storage adapter for use with livewire and mongoose.",
"main": "lib/index.js",
"repository": "https://gitlab.com/soufan/packages/livewire-mongoose.git",
"author": "fhpriamo <[email protected]>",
"license": "MIT",
"private": true,
"peerDependencies": {
"livewire": "https://soufan:[email protected]/soufan/packages/livewire.git",
"mongoose": "^5.8.11"
},
"scripts": {
"lint": "eslint lib/*",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"prettier": "^1.19.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}