-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.81 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
70
71
72
73
74
{
"name": "@smartlook/smartlook-crash-reports-cli",
"version": "2.1.10",
"type": "commonjs",
"description": "CLI tool for uploading crash mapping files to the Smartlook.",
"repository": "git@github.com:smartlook/smartlook-crash-cli-upload.git",
"author": "Jan Zaloudek (@smartlook), Patrik Laurinc (@smartlook)",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"build": "make build-ts",
"test": "jest"
},
"dependencies": {
"@types/archiver": "^5.3.1",
"@types/form-data": "^2.5.0",
"@types/glob": "^8.0.0",
"archiver": "^5.3.1",
"axios": "^0.27.2",
"chalk": "^5.2.0",
"commander": "^10.0.0",
"debug": "^4.3.4",
"form-data": "^4.0.0",
"glob": "^8.1.0",
"got": "^12.5.3",
"plist": "^3.0.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@semantic-release-plus/docker": "^3.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@types/debug": "^4.1.7",
"@types/got": "^9.6.12",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/plist": "^3.0.2",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"nock": "^13.1.4",
"pkg": "^5.8.0",
"prettier": "^2.8.3",
"prettier-default-config": "^0.2.3",
"rimraf": "^4.0.7",
"rollup": "^3.12.0",
"semantic-release": "^20.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"bin": {
"smartlook-crash-reports-cli": "./dist/index.js",
"smartlook-crash-reports": "./dist/index.js",
"slcr": "./dist/index.js"
},
"pkg": {
"scripts": "dist/index.js",
"targets": [
"node18-linux-arm64",
"node18-macos-arm64",
"node18-win-arm64",
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
],
"options": "no-warnings"
},
"files": [
"./build",
"./dist"
]
}