This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "nakajs-tx",
"version": "1.1.0",
"description": "An simple module for creating, manipulating, and signing Naka transactions",
"main": "es5/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:es5": "babel index.js --source-root ./ -d ./es5",
"build:docs": "documentation --github -f md ./index.js > ./docs/index.md && contributor"
},
"keywords": [
"nakachain",
"naka",
"transactions",
"signer"
],
"author": "Deric Walintukan <[email protected]>",
"license": "MPL-2.0",
"dependencies": {
"ethereum-common": "^0.0.18",
"ethereumjs-util": "^5.0.0"
},
"devDependencies": {
"async": "^2.0.0",
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"contributor": "^0.1.25",
"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/nakachain/nakajs-tx.git"
},
"bugs": {
"url": "https://github.com/nakachain/nakajs-tx/issues"
},
"homepage": "https://github.com/nakachain/nakajs-tx",
"standard": {
"ignore": [
"es5/**",
"dist/**",
"package-init.js",
"package.js"
]
}
}