-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 1.85 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": "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 --ignore-path .gitignore index.js test/",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"pretest": "npm run lint",
"test": "npm run test:node && npm run test:browser",
"test:browser": "web-test-runner",
"test:node": "mocha"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"eslintConfig": {
"extends": [
"strict/es6"
],
"env": {
"es6": true
},
"globals": {
"HTMLElement": false
},
"rules": {
"complexity": "off",
"max-statements": "off",
"prefer-arrow-callback": "off",
"prefer-reflect": "off"
}
},
"devDependencies": {
"@web/test-runner": "^0.17.0",
"browserify": "^13.0.0",
"browserify-istanbul": "^1.0.0",
"eslint": "^2.4.0",
"eslint-config-strict": "^8.5.0",
"eslint-plugin-filenames": "^0.2.0",
"ghooks": "^1.0.1",
"mocha": "^9.1.2",
"semantic-release": "^4.3.5",
"simple-assert": "^2.0.0",
"validate-commit-msg": "^2.3.1"
},
"engines": {
"node": ">= 16"
}
}