This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "rlp",
"version": "3.0.0",
"description": "Recursive Length Prefix Encoding Module",
"files": [
"dist",
"bin",
"src"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"rlp": "bin/rlp"
},
"scripts": {
"build": "tsc -p ./tsconfig.prod.json",
"prepublishOnly": "npm run test && npm run build",
"coverage": "npm run build && nyc --reporter=lcov npm run test:unit",
"tsc": "tsc -p ./tsconfig.prod.json --noEmit",
"lint": "ethereumjs-config-lint",
"lint:fix": "ethereumjs-config-lint-fix",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:browser",
"test:unit": "mocha --reporter spec --require ts-node/register test/*.spec.ts",
"test:browser": "karma start karma.conf.js"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/rlp.git"
},
"keywords": [
"rlp",
"ethereum"
],
"author": {
"name": "martin becze",
"email": "[email protected]"
},
"contributors": [
"Alex Beregszaszi <[email protected]>",
"Holger Drewes <[email protected]>",
"Paul Miller <[email protected]>"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/rlp/issues"
},
"devDependencies": {
"@ethereumjs/eslint-config-defaults": "^2.0.0",
"@ethereumjs/config-coverage": "^2.0.0",
"@ethereumjs/config-typescript": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^12.13.0",
"husky": "^4.2.5",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-typescript": "https://gitpkg.now.sh/monounity/karma-typescript/packages/karma-typescript?8c0664d864a00c8d6a3bf6d04d26cc2255600435&scripts.preinstall=npm%20config%20set%20puppeteer_skip_chromium_download%20true%20%26%26%20%%26%26%20npm%20i%20typescript%404%20--ignore-scripts%20%26%26%20npm%20i%20--only%3Ddev%20--ignore-scripts%20%26%26%20npx%20json%20-I%20-f%20tsconfig.json%20-e%20%22this.compilerOptions.noImplicitAny%3Dfalse%3Bthis.compilerOptions.skipLibCheck%3Dtrue%22%20&scripts.postinstall=%26%26%20npm%20run%20build",
"mocha": "7.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}