-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "@codedread/bitjs",
"version": "1.2.3",
"description": "Binary Tools for JavaScript",
"homepage": "https://github.com/codedread/bitjs",
"author": "Jeff Schiller",
"license": "MIT",
"keywords": [ "binary", "javascript", "archive", "file", "image",
"pkzip", "zip", "rar", "tar", "gzip",
"unzip", "unrar", "untar", "gunzip",
"gif", "jpeg", "png", "webp",
"codecs", "mp4", "avc", "webm"
],
"main": "./index.js",
"type": "module",
"types": "types/index.d.ts",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codedread/bitjs.git"
},
"bugs": {
"url": "https://github.com/codedread/bitjs/issues"
},
"devDependencies": {
"c8": "^7.14.0",
"chai": "^4.3.4",
"mocha": "^10.1.0",
"typescript": "^4.8.0"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"build-webpshim": "cd build; make",
"coverage": "c8 npm run test",
"test": "./node_modules/.bin/mocha tests/*.spec.js",
"update-types": "tsc"
}
}