-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
77
78
{
"name": "whitney-buffers",
"version": "0.0.9",
"description": "tiny self-describing binary protocol based on Arthur Whitney's q protocol",
"main": "dist/index.cjs",
"module": "index.js",
"scripts": {
"lint": "standard --fix",
"test": "jest ./__tests__/unit",
"perf": "babel-node __tests__/perf/encode.perf.js && babel-node __tests__/perf/decode.perf.js && babel-node __tests__/perf/size.perf.js",
"build": "rollup -c"
},
"outputFiles": [
{
"input": "./index.js",
"output": "./dist/index.js",
"format": "iife"
},
{
"input": "./aliased.js",
"output": "./dist/aliased.js",
"format": "iife"
},
{
"input": "./buffer.js",
"output": "./dist/buffer.js",
"format": "iife"
},
{
"input": "./all.js",
"output": "./dist/index.cjs",
"format": "cjs"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/supremetechnopriest/whitney-buffers.git"
},
"keywords": [
"data",
"binary",
"protocol",
"q",
"browser"
],
"author": "Randy Lebeau",
"license": "MIT",
"bugs": {
"url": "https://github.com/supremetechnopriest/whitney-buffers/issues"
},
"homepage": "https://github.com/supremetechnopriest/whitney-buffers#readme",
"dependencies": {
"long": "^4.0.0",
"uuid-parse": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.1.0",
"benchmark": "^2.1.4",
"jest": "^24.1.0",
"jest-puppeteer": "^4.0.0",
"microtime": "^3.0.0",
"puppeteer": "^1.12.2",
"rollup": "^1.2.2",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-visualizer": "^1.0.0",
"standard": "^12.0.1"
},
"jest": {
"collectCoverage": true
}
}