-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"name": "assert-deep-strict-equal",
"version": "1.2.2",
"description": "Asynchronous assert fails in Mocha you can see and don't timeout",
"license": "MIT",
"type": "module",
"module": "dist/assert-deep-strict-equal.js",
"types": "dist/assert-deep-strict-equal.d.ts",
"exports": "./dist/assert-deep-strict-equal.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/assert-deep-strict-equal.git"
},
"homepage": "https://github.com/center-key/assert-deep-strict-equal",
"bugs": "https://github.com/center-key/assert-deep-strict-equal/issues",
"docs": "https://github.com/center-key/assert-deep-strict-equal#readme",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"assert",
"deep",
"done",
"equal",
"mocha",
"strict",
"timeout"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"node": true,
"mocha": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"build": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0",
"tsc",
"add-dist-header build dist"
]
},
"scripts": {
"pretest": "run-scripts clean build",
"test": "mocha spec/*.spec.js --timeout 7000",
"examples": "npm test && mocha examples.spec.js"
},
"devDependencies": {
"@eslint/js": "~9.9",
"@types/node": "~22.3",
"add-dist-header": "~1.4",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"eslint": "~9.9",
"fetch-json": "~3.3",
"jshint": "~2.13",
"merge-stream": "~2.0",
"mocha": "~10.7",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.5",
"typescript-eslint": "~8.1"
}
}