forked from ethereumjs/ethereumjs-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 KB
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
{
"name": "ethereumjs-tx",
"version": "1.1.2",
"description": "An simple module for creating, manipulating and signing ethereum transactions",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover ./test/index.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"test": "npm run test:node && npm run test:browser",
"test:browser": "karma start karma.conf.js",
"test:node": "tape ./test/index.js",
"build:docs": "documentation --github -f md ./index.js > ./docs/index.md"
},
"keywords": [
"ethereum",
"transactions"
],
"author": "mjbecze <mb@ethdev.com>",
"license": "MPL-2.0",
"dependencies": {
"ethereum-common": "^0.0.17",
"ethereumjs-util": "^4.5.0"
},
"devDependencies": {
"async": "^2.0.0",
"browserify": "^13.0.0",
"coveralls": "^2.11.4",
"documentation": "^3.0.4",
"ethereumjs-testing": "0.0.1",
"istanbul": "^0.4.1",
"karma": "^1.1.1",
"karma-browserify": "^5.1.0",
"karma-detect-browsers": "^2.0.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-tap": "^2.0.1",
"minimist": "^1.2.0",
"standard": "^7.1.2",
"tape": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-tx.git"
},
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-tx/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-tx",
"standard": {
"ignore": [
"dist/**",
"package-init.js",
"package.js"
]
}
}