-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "js-crc",
"version": "0.3.1",
"description": "Simple CRC checksum functions for JavaScript. Supports many predefined models such as CRC-8, CRC-16, CRC-24, CRC-32, and CRC-64. It also supports custom CRC models.",
"main": "./src/crc.js",
"exports": {
".": {
"require": "./src/crc.js",
"import": "./src/crc.js",
"types": "./index.d.ts"
},
"./models": {
"require": "./src/models.js",
"import": "./src/models.js",
"types": "./models.d.ts"
}
},
"devDependencies": {
"expect.js": "~0.3.1",
"mocha": "~10.2.0",
"nyc": "^15.1.0",
"tiny-worker": "^2.3.0",
"uglify-js": "^3.1.9"
},
"scripts": {
"test": "nyc mocha tests/node-test.js",
"report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "uglifyjs src/crc.js -c -m eval --comments -o build/crc.min.js && uglifyjs src/models.js -c -m eval --comments -o build/models.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/emn178/js-crc.git"
},
"keywords": [
"crc",
"crc-8",
"crc-16",
"crc-24",
"crc-32",
"crc-64"
],
"license": "MIT",
"author": "Chen, Yi-Cyuan <emn178@gmail.com>",
"homepage": "https://github.com/emn178/js-crc",
"bugs": {
"url": "https://github.com/emn178/js-crc/issues"
}
}