-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 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
62
63
64
{
"name": "buffer-plus",
"version": "1.3.0",
"description": "Enhanced buffer with offset calculation auto-resize, static schematic and customize type support.",
"main": "lib/index.js",
"keywords": [
"buffer",
"schema",
"pack",
"binary",
"serialize",
"c-struct"
],
"repository": {
"type": "git",
"url": "https://github.com/arloliu/buffer-plus"
},
"author": "Arlo Liu <arlo.liu@gmail.com>",
"license": "MIT",
"bugs": {
"type": "git",
"url": "https://github.com/arloliu/buffer-plus/issues"
},
"homepage": "https://github.com/arloliu/buffer-plus",
"scripts": {
"test": "mocha",
"coverage": "NODE_ENV=test nyc mocha",
"coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
"build": "npm run build:node; npm run build:web",
"build:node": "babel --no-comments -d lib src",
"build:web": "webpack --mode=production",
"eslint": "eslint src test",
"watch": "babel --watch --no-comments -d lib src"
},
"nyc": {
"exclude": [
"lib",
"test"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^8.0.5",
"benchmark": "^2.1.4",
"buffer": "^6.0.2",
"chai": "^4.1.0",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-config-google": "^0.12.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier-eslint": "^9.0.1",
"schemapack": "^1.4.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"int64-buffer": "^0.1.9"
}
}