-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.8 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
79
80
81
82
83
84
85
86
87
88
{
"name": "byteify",
"version": "4.1.4",
"description": "An npm module that serializes or deserializes your native types to an array of bytes.",
"types": "./bundled/index.d.ts",
"main": "./bundled/commonjs/index.js",
"module": "./bundled/esm/index.esm.js",
"exports": {
".": {
"require": "./bundled/commonjs/index.js",
"import": "./bundled/esm/index.esm.js"
}
},
"type": "module",
"engines": {
"node": ">=14.16"
},
"files": [
"package.json",
"bundled",
"README.md",
"LICENSE"
],
"scripts": {
"clean": "shx rm -rf dist bundled",
"pretranspile:source": "npm run clean",
"transpile:source": "tsc -p source",
"pretranspile": "npm run clean",
"transpile": "npm run transpile:source",
"pretranspile:all": "npm run clean",
"transpile:all": "tsc",
"bundle:esm": "node build.mjs",
"bundle:dts": "dts-bundle-generator -o bundled/index.d.ts --project source/tsconfig.json source/index.ts",
"prebundle": "npm run clean",
"bundle": "npm run bundle:esm && npm run bundle:dts",
"lint:source": "eslint source --ext ts --format codeframe",
"lint:source:fix": "eslint source --ext ts --format codeframe --fix",
"lint:test": "eslint test --ext ts --format codeframe",
"lint:test:fix": "eslint test --ext ts --format codeframe --fix",
"lint": "npm run lint:source && npm run lint:test",
"lint:fix": "npm run lint:source:fix && npm run lint:test:fix",
"docs:html": "typedoc --plugin none --options typedoc.cjs",
"docs:html-dev": "typedoc --options typedoc.dev.cjs",
"docs": "npm run docs:html && npm run docs:html-dev",
"test": "jest",
"cover:generate": "jest --coverage",
"cover:coveralls": "cat ./coverage/lcov.info | coveralls",
"cover:codecov": "codecov",
"cover": "npm run cover:generate && npm run cover:coveralls && npm run cover:codecov",
"prepublishOnly": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/euberdeveloper/byteify.git"
},
"keywords": [
"bytes",
"bytes-array",
"serialize",
"deserialize",
"deserialize-bytes"
],
"author": "Eugenio Vinicio Berretta <euberdeveloper@gmail.com>",
"contributors": [
"Nicola Toscan <nicolatoscan99@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/euberdeveloper/byteify/issues"
},
"homepage": "https://byteify.euber.dev",
"devDependencies": {
"@euberdeveloper/eslint-plugin": "^2.3.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.1",
"codecov": "^3.8.3",
"coveralls": "^3.1.1",
"dts-bundle-generator": "^8.0.1",
"esbuild": "^0.17.18",
"eslint": "^8.39.0",
"jest": "^29.5.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
}
}