-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 KB
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
56
57
58
{
"name": "@kibibit/kb-plex-api-client",
"version": "0.0.0-development",
"description": "plex.tv api client for node.js & browser using axios",
"types": "lib/kb-plex-api-client.d.ts",
"main": "lib/kb-plex-api-client.js",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"generate-barrels": "barrelsby --delete -d ./src -l below -q",
"semantic-release:setup": "semantic-release-cli setup",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"author": "thatkookooguy <neilkalman@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"all-contributors-cli": "^6.19.0",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"husky": "^4.3.7",
"semantic-release": "^17.3.1",
"semantic-release-cli": "^5.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Kibibit/kb-plex-api-client.git"
},
"dependencies": {
"axios": "^0.21.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
}
}