-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1002 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
37
38
39
40
41
42
43
44
45
46
{
"name": "pavie",
"version": "1.0.7",
"description": "Node.js restful API for Plex Server",
"main": "pavie.js",
"author": "BATTISTELLA Damien <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node server.js",
"patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wifsimster/pavie.git"
},
"bugs": {
"url": "https://github.com/Wifsimster/pavie/issues"
},
"keywords": [
"javascript",
"rest",
"plex",
"movie",
"restfull",
"node.js",
"tv shows",
"episode",
"pms"
],
"homepage": "https://github.com/Wifsimster/pavie#readme",
"dependencies": {
"axios": "^0.19.2",
"uuid": "^7.0.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"eslint": "^6.8.0",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}