-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "chai-bytes",
"version": "0.1.2",
"description": "Chai assertions for byte arrays equality",
"repository": {
"type": "git",
"url": "https://github.com/slowli/chai-bytes.git"
},
"bugs": {
"url": "https://github.com/slowli/chai-bytes/issues"
},
"engines": {
"node": ">=16"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "semistandard",
"test": "mocha test",
"test:browser": "web-test-runner"
},
"keywords": [
"chai",
"chai-plugin",
"assertions",
"testing",
"buffers",
"uint8array"
],
"author": "Alex Ostrovski <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@types/chai": "^4.3.1",
"@web/dev-server-rollup": "^0.6.1",
"@web/test-runner": "^0.18.0",
"chai": "^5.0.3",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"semistandard": "^17.0.0",
"typescript": "^5.1.3"
},
"peerDependencies": {
"chai": ">=4 <6"
}
}