-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.03 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
75
76
77
78
79
{
"name": "@bugsnag/source-maps",
"version": "2.3.2",
"description": "CLI and JS library for uploading source maps to Bugsnag",
"main": "dist/index.js",
"homepage": "https://github.com/bugsnag/bugsnag-source-maps",
"bugs": {
"url": "https://github.com/bugsnag/bugsnag-source-maps/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bugsnag/bugsnag-source-maps.git"
},
"bin": {
"bugsnag-source-maps": "bin/cli"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"lint": "eslint . --ext .js,.ts",
"test": "tsc --noEmit && npm run lint && jest",
"preversion": "npm run build"
},
"files": [
"bin",
"dist",
"LICENSE.txt"
],
"keywords": [
"Bugsnag",
"source",
"maps",
"CLI",
"tool",
"upload"
],
"author": "Bugsnag",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@react-native-community/eslint-config": "^2.0.0",
"@types/command-line-args": "^5.0.0",
"@types/command-line-usage": "^5.0.1",
"@types/concat-stream": "^1.6.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.14",
"@types/multiparty": "0.0.32",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"babel-plugin-const-enum": "^1.0.1",
"eslint": "^7.12.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.5.3",
"multiparty": "^4.2.2",
"once": "^1.4.0",
"typescript": "^4.0.3",
"webpack": "^5.3.0",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"concat-stream": "^2.0.0",
"consola": "^2.15.0",
"form-data": "^3.0.0",
"glob": "^7.1.6",
"read-pkg-up": "^7.0.1"
},
"resolutions": {
"semver": "^5.7.2"
}
}