-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 1.86 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": "node-crc16",
"version": "2.0.7",
"description": "A native node addon to calcalate and verify CRC16 values, adopted by MODBUS agreement.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/nyc ./node_modules/.bin/mocha --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"benchmark": "node benchmark/benchmark.js",
"nanobench": "node benchmark/nanobench.js",
"build:node": "make build-node",
"build:xcode-project": "make build-xcode-project",
"test:cpp": "make test",
"test:node": "npm test",
"clean": "make clean",
"preinstall": "node ./preinstall.js",
"install": "node-gyp rebuild"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imnemo/crc16.git"
},
"keywords": [
"crc",
"crc16",
"modbus",
"modbus-rtu",
"modbus-serial",
"modbus-protocol",
"native",
"addon",
"napi",
"nodejs",
"npm",
"node-module"
],
"author": "imnemo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imnemo/crc16/issues"
},
"homepage": "https://github.com/imnemo/crc16#readme",
"runkitExampleFilename": "example/runkit.js",
"files": [
"lib",
"src",
"test",
"example",
"binding.gyp",
"index.js",
"index.d.ts",
"package.json",
"package-lock.json",
"preinstall.js",
"README.md",
"README-zh.md"
],
"dependencies": {
"buffer-factory": "1.0.8",
"node-addon-api": "3.0.0"
},
"devDependencies": {
"@types/node": "14.0.27",
"benchmark": "2.1.4",
"chai": "4.1.0",
"chance": "1.0.10",
"coveralls": "2.13.1",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.21.2",
"mocha": "3.4.2",
"nanobench": "2.1.0",
"nyc": "11.1.0"
}
}