forked from asbaker/node-decoder-ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "@eflexsystems/decoder-ring",
"version": "6.0.1",
"description": "Decode binary buffers using a JSON specification",
"exports": "./src/DecoderRing.js",
"type": "module",
"scripts": {
"test": "mocha test/**/*.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "http://github.com/eflexsystems/node-decoder-ring"
},
"keywords": [
"buffer",
"binary",
"decode"
],
"author": "Jacob Jewell <jacobjewell@eflexsystems.com>",
"contributors": [
"Tony Baker <anthony.s.baker@gmail.com>"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.35.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"sinon": "^15.0.1"
},
"engines": {
"node": ">= 18.0.0"
},
"bugs": "http://github.com/eflexsystems/node-decoder-ring/issues",
"homepage": "http://github.com/eflexsystems/node-decoder-ring",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/eflexsystems/node-decoder-ring/raw/master/LICENSE"
}
]
}