-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 979 Bytes
/
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
{
"name": "crc-multi",
"version": "0.1.2",
"description": "CRC In Javascript",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/*.js scripts/*.js",
"test": "mocha",
"nyc": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mslosarek/crc-multi.git"
},
"keywords": [
"CRC",
"CRC-8",
"CRC-16",
"CRC-32",
"CRC-64"
],
"author": "Mark Slosarek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mslosarek/crc-multi/issues"
},
"homepage": "https://github.com/mslosarek/crc-multi#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"markdown-table": "^3.0.3",
"mocha": "^10.4.0",
"nyc": "^15.1.0"
},
"dependencies": {},
"files": [
"src/*",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
]
}