-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "node-binary-parser",
"description": "Parsing binary data by rules",
"version": "0.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"gypfile": true,
"homepage": "https://github.com/sergak01/node-binary-parser",
"bugs": {
"url": "https://github.com/sergak01/node-binary-parser/issues"
},
"scripts": {
"test": "jest",
"codecov": "codecov",
"typedoc": "typedoc && git add -A docs",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"cformat": "clang-format --style=file --glob=\"./*.{cpp,h}\"",
"clean": "node-gyp clean",
"lint": "tslint -p tsconfig.json",
"install": "node-gyp rebuild && npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && npm run cformat && git add -A src && npm run typedoc",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^14.17.27",
"clang-format": "^1.5.0",
"codecov": "^3.6.4",
"husky": "^4.2.5",
"jest": "^27.3.0",
"lint-staged": "^10.2.2",
"node-gyp": "^8.2.0",
"prettier": "^1.19.1",
"ts-jest": "^27.0.7",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.6",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergak01/node-binary-parser"
},
"keywords": [
"binary",
"parser",
"node",
"typescript",
"addon"
],
"husky": {
"hooks": {
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{ts}": [
"npm test",
"git add"
]
},
"dependencies": {
"node-addon-api": "^5.0.0"
}
}