-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.53 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.53 KB
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
{
"name": "byte",
"version": "2.0.0",
"description": "Input Buffer and Output Buffer, just like Java ByteBuffer",
"main": "lib/byte.js",
"files": [
"lib"
],
"scripts": {
"autod": "autod",
"lint": "eslint lib test *.js",
"test": "npm run lint && egg-bin test",
"test-local": "egg-bin test",
"cov": "egg-bin cov",
"pkgfiles": "egg-bin pkgfiles",
"ci": "npm run autod -- --check && egg-bin pkgfiles --check && npm run lint && npm run cov",
"contributors": "contributors -f plain -o AUTHORS",
"optimized": "node --allow-natives-syntax --trace_opt --trace_deopt test/optimized.js"
},
"dependencies": {
"debug": "^3.1.0",
"long": "^4.0.0",
"utility": "^1.13.1"
},
"devDependencies": {
"autod": "^3.0.1",
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.4",
"egg-bin": "^4.7.0",
"egg-ci": "^1.8.0",
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"fastbench": "^1.0.1",
"optimized": "^1.2.0"
},
"homepage": "https://github.com/node-modules/byte",
"repository": {
"type": "git",
"url": "git://github.com/node-modules/byte.git",
"web": "https://github.com/node-modules/byte"
},
"bugs": {
"url": "https://github.com/node-modules/byte/issues",
"email": "fengmk2@gmail.com"
},
"keywords": [
"ByteBuffer",
"byte",
"bytes",
"io",
"buffer"
],
"engines": {
"node": ">= 8.0.0"
},
"ci": {
"version": "8, 10"
},
"author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
"license": "MIT"
}