-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "tinybuf",
"version": "1.8.6",
"author": "Reece Como <[email protected]>",
"authors": [
"Reece Como <[email protected]>",
"Sitegui <[email protected]>"
],
"license": "MIT",
"description": "Fast, compressed binary serializers in Node.js and HTML5",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["./dist"],
"sideEffects": false,
"scripts": {
"build": "rimraf dist && rollup -c --bundleConfigAsCjs && rimraf dist/core && ./node_modules/.bin/dts-bundle-generator -o dist/index.d.ts src/index.ts --no-banner --export-referenced-types",
"coverage": "jest --collectCoverage",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reececomo/tinybuf.git"
},
"keywords": [
"arraybuffer",
"binary",
"buffer",
"decode",
"encode",
"js-binary",
"json",
"parse",
"ts-binary",
"typedarray",
"typescript-binary"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.2.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-plugin-disable-autofix": "^4.2.0",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-jsdoc": "^46.4.2",
"jest": "^29.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"ts-jest": "^29.0.5",
"tslib": "^2.6.3",
"typescript": "^4.9.4"
},
"bugs": {
"url": "https://github.com/reececomo/tinybuf/issues"
},
"homepage": "https://github.com/reececomo/tinybuf#readme",
"directories": {
"test": "src/__tests__"
}
}