-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
76 lines (76 loc) · 1.62 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
73
74
75
76
{
"name": "int64-buffer",
"description": "64bit Long Integer on Buffer/Array/ArrayBuffer in Pure JavaScript",
"version": "1.1.0",
"author": "@kawanet",
"bugs": {
"url": "https://github.com/kawanet/int64-buffer/issues"
},
"contributors": [
"kawanet <[email protected]>",
"pizza2code <[email protected]>",
"Jan Krems <[email protected]>"
],
"devDependencies": {
"@types/node": "^22.10.2",
"coveralls": "^3.1.1",
"jshint": "^2.13.6",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"terser": "^5.37.0"
},
"exports": {
"types": "./int64-buffer.d.ts",
"import": "./int64-buffer.mjs",
"require": "./int64-buffer.js"
},
"files": [
"LICENSE",
"README.md",
"dist/int64-buffer.min.js",
"int64-buffer.js",
"int64-buffer.d.ts",
"int64-buffer.mjs"
],
"homepage": "https://github.com/kawanet/int64-buffer",
"jshintConfig": {
"globals": {
"describe": true,
"it": true,
"window": true
},
"node": true,
"undef": true,
"unused": true
},
"keywords": [
"64bit",
"IEEE-754",
"arraybuffer",
"buffer",
"int",
"int64",
"int8array",
"integer",
"long",
"longlong",
"signed",
"uint64",
"unsinged"
],
"license": "MIT",
"main": "int64-buffer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kawanet/int64-buffer.git"
},
"scripts": {
"build": "make",
"coveralls": "make test-coverage",
"fixpack": "fixpack",
"prepack": "make clean all test",
"test": "make test"
},
"type": "commonjs",
"typings": "int64-buffer.d.ts"
}