This repository has been archived by the owner on Feb 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "@bagaar/upload-ember-source-maps-to-bugsnag",
"version": "0.0.0",
"description": "Upload Ember source maps to Bugsnag.",
"repository": "https://github.com/Bagaar/upload-ember-source-maps-to-bugsnag",
"license": "MIT",
"author": "Bagaar",
"type": "module",
"bin": {
"upload-ember-source-maps-to-bugsnag": "bin/index.js"
},
"files": [
"bin/",
"lib/"
],
"scripts": {
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:json": "prettier \"./**/*.json\" --check",
"lint:json:fix": "prettier \"./**/*.json\" --write",
"lint:md": "prettier \"./**/*.md\" --check",
"lint:md:fix": "prettier \"./**/*.md\" --write",
"lint:yml": "prettier \"./**/*.yml\" --check",
"lint:yml:fix": "prettier \"./**/*.yml\" --write"
},
"dependencies": {
"@bugsnag/source-maps": "^2.3.1",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"kleur": "^4.1.5",
"node-html-parser": "^6.1.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.7",
"concurrently": "^8.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 16"
},
"volta": {
"node": "16.14.0"
}
}