-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Josh Stout <joshstout@gmail.com>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "1.7.2",
"cheerio": "1.0.0-rc.12",
"http-cookie-agent": "6.0.5",
"tough-cookie": "5.0.0-rc.2"
},
"description": "Library for managing things against the undocumented egnyte resellers API.",
"devDependencies": {
"@pliancy/eslint-config-ts": "1.1.1",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@types/jest": "29.5.12",
"@types/node": "20.12.13",
"@types/tough-cookie": "4.0.5",
"commitizen": "4.3.0",
"concurrently": "8.2.2",
"cpy-cli": "5.0.0",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.11",
"jest": "29.7.0",
"pinst": "3.0.0",
"rimraf": "5.0.7",
"ts-jest": "29.1.4",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"homepage": "https://github.com/pliancy/egnyte-resellers-node",
"keywords": [
"egnyte",
"resellers",
"msp"
],
"license": "MIT",
"main": "index.js",
"name": "egnyte-resellers",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/egnyte-resellers-node"
},
"scripts": {
"build": "yarn clean && yarn test && yarn tsc && yarn copy",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "concurrently 'yarn lint' 'yarn test' 'yarn clean' 'yarn build:check'",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
},
"types": "index.d.ts",
"version": "2.0.4",
"volta": {
"node": "20.11.1",
"yarn": "1.22.22"
}
}