This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.69 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
{
"author": {
"name": "Lukas Wawrzyniak",
"email": "lw@wawit.net"
},
"description": "To compute CRC16-CCITT values.",
"dependencies": {
"bindings": "^1.3.0",
"jest": "^24.9.0"
},
"devDependencies": {
"@bitjson/npm-scripts-info": "^1.0.0",
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-prettier": "^3.1.0",
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5",
"open-cli": "^5.0.0",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"trash-cli": "^3.0.0"
},
"engines": {
"node": ">=9.0.0"
},
"gypfile": true,
"homepage": "https://github.com/born2bewild/node-crc16-ccitt#readme",
"keywords": [
"nodejs",
"crc16",
"crc16-ccitt",
"ccitt",
"crc-ccitt",
"posnet"
],
"license": "MIT",
"main": "index.js",
"name": "@wawit/crc16-ccitt",
"repository": {
"type": "git",
"url": "git+https://github.com/magiclen/node-crc.git"
},
"scripts": {
"gyp:rebuild": "node-gyp rebuild",
"describe": "npm-scripts-info",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"./**/*.js\" --write",
"fix:lint": "eslint . --fix --ext .js ",
"test": "run-s test:*",
"test:lint": "eslint . --cache --ext .js && prettier \"./**/*.js\" --list-different",
"test:unit": "jest",
"cov": "jest --coverage",
"version": "standard-version",
"reset": "git clean -dfx && git reset --hard && npm i",
"prepare-release": "run-s reset test cov version"
},
"scripts-info": {
"info": "Display information about the package scripts",
"build": "Clean and rebuild the project",
"fix": "Try to automatically fix any linting problems",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests",
"cov": "Rebuild, run tests, then create and open the coverage report",
"doc:json": "Generate API documentation in typedoc JSON format",
"version": "Bump package.json version, update CHANGELOG.md, tag release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"prepare-release": "One-step: clean, build, test, and prep a release"
},
"typings": "index.d.ts",
"version": "0.0.6"
}