-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@js-soft/codemagic-tools",
"version": "1.0.2",
"description": "Codemagic extended tooling",
"homepage": "https://github.com/js-soft/codemagic-tools#readme",
"bugs": {
"url": "https://github.com/js-soft/codemagic-tools/issues"
},
"repository": "github:js-soft/codemagic-tools",
"license": "MIT",
"author": "j&s-soft GmbH",
"main": "index.js",
"bin": {
"jscm": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"start": "ts-node src/index.ts",
"lint": "npm run lint:prettier && npm run lint:eslint",
"lint:eslint": "eslint --ext ts ./src",
"lint:prettier": "prettier --check ."
},
"files": [
"dist"
],
"dependencies": {
"axios": "^1.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^1.6.4",
"@js-soft/license-check": "^1.0.6",
"@types/node": "^20.9.0",
"@types/yargs": "^17.0.31",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}