forked from oBusk/read-bigint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.3 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
{
"name": "read-bigint",
"version": "0.1.4",
"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.20.1 || ^12.16.3 || ^14.14.0 || >=15.0.0"
},
"volta": {
"node": "15.2.1",
"npm": "7.0.12"
},
"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"
}
]
},
"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",
"prettier": "prettier **/*.{md,yml,yaml} --ignore-path .gitignore --check",
"prettier-fix": "prettier **/*.{md,yml,yaml} --ignore-path .gitignore --write",
"postlint": "npm run prettier",
"postlint-fix": "npm run prettier-fix",
"test": "jest",
"test-coverage": "jest --coverage",
"bundlewatch": "bundlewatch"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^10.17.44",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"bundlewatch": "^0.3.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}