-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 987 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 987 Bytes
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
{
"name": "decyphertv",
"version": "0.1.19-temp",
"description": "CLI for helper libraries to follow along with the decypher.tv ethereum screencast series",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "Jordan Leigh (@AlwaysBCoding)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/AlwaysBCoding/decyphertv"
},
"keywords": [
"ethereum",
"decypher",
"decyphertv"
],
"bin": {
"decypher": "./index.js",
"decyphertv": "./index.js"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"cli-spinner": "^0.2.6",
"commander": "^2.9.0",
"ethereumjs-tx": "^1.2.5",
"ethereumjs-util": "^5.1.1",
"fs": "0.0.1-security",
"lodash": "^4.17.4",
"prompt": "^1.0.0",
"q": "^1.4.1",
"solc": "^0.4.9",
"web3": "^0.18.2"
},
"devDependencies": {
"jest-cli": "^19.0.2"
},
"jest": {
"testEnvironment": "node"
}
}