-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "nice-try",
"version": "4.0.2",
"description": "Tries to execute a function and discards any error that occurs",
"keywords": [
"try",
"catch",
"error"
],
"homepage": "https://github.com/electerious/nice-try",
"repository": {
"type": "git",
"url": "https://github.com/electerious/nice-try.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./src/index.js",
"./promises": "./src/promises.js"
},
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint \"**/*.js\"",
"format": "npm run eslint -- --fix && npm run prettier -- --write",
"lint": "npm run eslint && npm run prettier -- --check",
"prettier": "prettier --ignore-path .gitignore \"**/*.{js,json,md,yml}\"",
"test": "npm run lint && node --test"
},
"devDependencies": {
"@electerious/eslint-config": "^5.0.0",
"@electerious/prettier-config": "^4.0.0",
"eslint": "^9.33.0",
"prettier": "^3.6.2"
},
"authors": [
"Tobias Reich <tobias@electerious.com>"
]
}