This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
forked from pabigot/buffer-layout
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "@solana/buffer-layout",
"version": "4.0.1",
"description": "Translation between JavaScript values and Buffers",
"keywords": [
"Buffer",
"struct",
"endian",
"pack data"
],
"homepage": "https://github.com/solana-labs/buffer-layout",
"bugs": "https://github.com/solana-labs/buffer-layout/issues",
"repository": {
"type": "git",
"url": "https://github.com/solana-labs/buffer-layout.git"
},
"license": "MIT",
"author": "Peter A. Bigot <[email protected]>",
"main": "./lib/Layout.js",
"types": "./lib/Layout.d.ts",
"files": [
"/lib"
],
"dependencies": {
"buffer": "~6.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"coveralls": "^3.0.0",
"eslint": "~7.30.0",
"gh-pages": "^3.2.3",
"istanbul": "~0.4.5",
"jsdoc": "~3.5.5",
"lodash": "~4.17.5",
"mocha": "~5.0.4",
"shx": "^0.3.3",
"typedoc": "^0.22.10",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=5.10"
},
"scripts": {
"build": "tsc",
"coverage": "npm run build && istanbul cover _mocha -- -u tdd",
"coveralls": "npm run build && istanbul cover _mocha --report lcovonly -- -u tdd && cat ./coverage/lcov.info | coveralls",
"docs": "shx rm -rf docs && typedoc && shx cp .nojekyll docs/",
"eslint": "eslint src/ --ext .ts",
"jsdoc": "jsdoc -c jsdoc/conf.json",
"pages": "gh-pages --dist docs --dotfiles",
"prepare": "npm run build",
"test": "npm run build && mocha -u tdd"
}
}