-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 875 Bytes
/
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
{
"name": "assert-diff",
"description": "Drop-in replacement for assert to give diff on deepEqual.",
"keywords": [
"assert",
"diff",
"deepEqual",
"object",
"array",
"strict"
],
"author": "Antti Mattila <[email protected]>",
"repository": "git://github.com/pihvi/assert-diff",
"version": "3.0.4",
"main": "./lib",
"license": "Apache-2.0",
"dependencies": {
"assert-plus": "1.0.0",
"json-diff": "1.0.6"
},
"devDependencies": {
"mocha": "10.2.0",
"prettier": "^2.8.7",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"scripts": {
"test": "mocha test/example-passing-tests.js",
"examples": "mocha test/example-failing-tests.js",
"start": "npm test",
"format": "prettier \"{lib,test}/*.{js,mjs}\" --write",
"build": "webpack lib/index.mjs"
}
}