File size: 1,094 Bytes
6655e35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "name": "buffer-layout",
  "version": "1.2.2",
  "description": "Translation between JavaScript values and Buffers",
  "keywords": [
    "Buffer",
    "struct",
    "endian",
    "pack data"
  ],
  "homepage": "https://github.com/pabigot/buffer-layout",
  "bugs": "https://github.com/pabigot/buffer-layout/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/pabigot/buffer-layout.git"
  },
  "license": "MIT",
  "author": "Peter A. Bigot <pab@pabigot.com>",
  "main": "./lib/Layout.js",
  "devDependencies": {
    "coveralls": "^3.0.0",
    "eslint": "~4.18.2",
    "eslint-config-google": "~0.9.1",
    "eslint-plugin-pabigot": "~1.1.0",
    "istanbul": "~0.4.5",
    "jsdoc": "~3.5.5",
    "lodash": "~4.17.5",
    "mocha": "~5.0.4"
  },
  "engines": {
    "node": ">=4.5"
  },
  "scripts": {
    "coverage": "istanbul cover _mocha -- -u tdd",
    "coveralls": "istanbul cover _mocha --report lcovonly -- -u tdd && cat ./coverage/lcov.info | coveralls",
    "eslint": "eslint lib/ test/",
    "jsdoc": "jsdoc -c jsdoc/conf.json",
    "test": "mocha -u tdd"
  }
}