UNPKG

1.81 kBJSONView Raw
1{
2 "name": "rlp",
3 "version": "3.0.0",
4 "description": "Recursive Length Prefix Encoding Module",
5 "license": "MPL-2.0",
6 "keywords": [
7 "rlp",
8 "ethereum"
9 ],
10 "files": [
11 "dist",
12 "bin",
13 "src"
14 ],
15 "main": "dist/index.js",
16 "types": "dist/index.d.ts",
17 "bin": {
18 "rlp": "bin/rlp"
19 },
20 "scripts": {
21 "build": "../../config/cli/ts-build.sh node",
22 "prepublishOnly": "../../config/cli/prepublish.sh",
23 "clean": "../../config/cli/clean-package.sh",
24 "coverage": "../../config/cli/coverage.sh",
25 "tsc": "../../config/cli/ts-compile.sh",
26 "lint": "../../config/cli/lint.sh",
27 "lint:fix": "../../config/cli/lint-fix.sh",
28 "tape": "tape -r ts-node/register",
29 "test": "npm run test:node && npm run test:browser",
30 "test:node": "npm run tape -- test/*.spec.ts",
31 "test:browser": "karma start karma.conf.js"
32 },
33 "devDependencies": {
34 "@types/node": "^16.11.7",
35 "@types/tape": "^4.13.2",
36 "karma": "^6.3.4",
37 "karma-chrome-launcher": "^3.1.0",
38 "karma-firefox-launcher": "^2.1.1",
39 "karma-tap": "^4.2.0",
40 "karma-typescript": "^5.5.3",
41 "nyc": "^15.1.0",
42 "prettier": "^2.4.1",
43 "tape": "^5.3.1",
44 "ts-node": "^10.2.1",
45 "typescript": "^4.4.2"
46 },
47 "author": {
48 "name": "martin becze",
49 "email": "mjbecze@gmail.com"
50 },
51 "contributors": [
52 "Alex Beregszaszi <alex@rtfs.hu>",
53 "Holger Drewes <Holger.Drewes@gmail.com>",
54 "Paul Miller <pkg@paulmillr.com>"
55 ],
56 "repository": {
57 "type": "git",
58 "url": "https://github.com/ethereumjs/ethereumjs-monorepo.git"
59 },
60 "homepage": "https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/rlp#readme",
61 "bugs": {
62 "url": "https://github.com/ethereumjs/ethereumjs-monorepo/issues?q=is%3Aissue+label%3A%22package%3A+rlp%22"
63 }
64}