-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@js-soft/codemagic-tools",
"version": "1.0.3",
"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.8.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@js-soft/eslint-config-ts": "^1.6.14",
"@js-soft/license-check": "^1.0.9",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"eslint": "^8.57.1",
"prettier": "^3.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}