-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.54 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
65
66
67
68
69
{
"name": "simform-pocket-cli",
"version": "1.0.2",
"description": "Pocket Deploy command-line utility",
"homepage": "https://github.com/SimformSolutionsPvtLtd/pocket-cli/#readme",
"author": "Simform Solutions",
"repository": {
"type": "git",
"url": "https://github.com/SimformSolutionsPvtLtd/pocket-cli/"
},
"bin": {
"pocket": "./dist/distribute.js"
},
"scripts": {
"build": "rm -rf dist && tsc"
},
"keywords": [
"distribute",
"CLI"
],
"license": "MIT",
"files": [
"/dist"
],
"dependencies": {
"axios": "^1.7.9",
"build-info-parser": "1.0.0",
"form-data": "^4.0.1",
"jsonwebtoken": "9.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/mocha": "^9.0.0",
"@types/node": "^15.6.1",
"@types/q": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^7.32.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.7.1",
"sync-request": "^6.1.0",
"typescript": "^5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn build && yarn test"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint"
]
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}