This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.35 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
{
"name": "read-bigint",
"version": "0.1.6",
"description": "👓💯 Read Unsigned/Signed Big/Little-Endian BigInt from Buffer",
"keywords": [
"bigint",
"buffer",
"read",
"readbigint",
"signed",
"unsigned"
],
"author": "Oscar Busk <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/oBusk/read-bigint#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oBusk/read-bigint.git"
},
"bugs": {
"url": "https://github.com/oBusk/read-bigint/issues"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || ^16.13.0 || >=17.4.0"
},
"volta": {
"node": "16.14.2",
"npm": "8.7.0"
},
"type": "commonjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist.module/index.js",
"sideEffects": false,
"bundlewatch": {
"files": [
{
"path": "dist?(.module)/!(*.spec).js",
"maxSize": "0.6kB"
}
],
"ci": {
"trackBranches": [
"main"
]
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && npm test"
},
"scripts": {
"version": "npm run build",
"build": "rimraf dist/ dist.module/ && tsc && tsc -P tsconfig.module.json",
"lint": "eslint **/*.{ts,js,json} --ignore-path .gitignore",
"lint-fix": "eslint **/*.{ts,js,json} --ignore-path .gitignore --fix",
"postlint": "prettier **/*.{md,yml,yaml} --ignore-path .gitignore --check",
"postlint-fix": "prettier **/*.{md,yml,yaml} --ignore-path .gitignore --write",
"test": "jest --roots src/",
"test-dist": "jest --roots dist/"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}