-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "easy-crc",
"version": "1.1.0",
"description": "A pure JavaScript and zero dependencies CRC node module.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"publish": "npm publish --access public",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fabio286/easy-crc.git"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.12",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^7.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.2"
},
"keywords": [
"crc",
"crc8",
"crc16",
"crc32"
],
"author": "Fabio Di Stasio",
"license": "MIT"
}