-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
42
43
44
45
{
"name": "check-error",
"description": "Error comparison and information related utility for node and the browser",
"keywords": [
"check-error",
"error",
"chai util"
],
"license": "MIT",
"author": "Jake Luer <[email protected]> (http://alogicalparadox.com)",
"contributors": [
"David Losert (https://github.com/davelosert)",
"Keith Cirkel (https://github.com/keithamus)",
"Miroslav Bajtoš (https://github.com/bajtos)",
"Lucas Fernandes da Costa (https://github.com/lucasfcosta)"
],
"files": [
"index.js",
"check-error.js"
],
"type": "module",
"main": "./index.js",
"module": "./index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chaijs/check-error.git"
},
"scripts": {
"lint": "eslint index.js test/",
"pretest": "npm run lint",
"test": "npm run test:node && npm run test:browser",
"test:browser": "web-test-runner",
"test:node": "mocha"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@web/test-runner": "^0.20.2",
"eslint": "^9.31.0",
"mocha": "^11.7.1",
"simple-assert": "^2.0.0"
},
"engines": {
"node": ">= 16"
}
}