-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.2 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
{
"name": "@vapory/solc",
"namespace": "vapory",
"version": "0.4.19-a",
"description": "Vapory Flavored Solidity Compiler",
"main": "index.js",
"bin": {
"solcjs": "solcjs"
},
"scripts": {
"lint": "semistandard",
"prepublish": "./downloadCurrentVersion.js && ./verifyVersion.js",
"pretest": "npm run lint",
"test": "tape ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaporyco/solc-js.git"
},
"keywords": [
"vapory",
"solidity",
"compiler"
],
"files": [
"abi.js",
"index.js",
"linker.js",
"solcjs",
"soljson.js",
"translate.js",
"wrapper.js"
],
"author": "chriseth",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaporyco/solc-js/issues"
},
"homepage": "https://github.com/vaporyco/solc-js#readme",
"dependencies": {
"fs-extra": "^0.30.0",
"memorystream": "^0.3.1",
"require-from-string": "^1.1.0",
"semver": "^5.3.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"vaporyjs-util": "5.1.5",
"semistandard": "^11.0.0",
"tape": "^4.5.1",
"tape-spawn": "^1.4.2"
},
"semistandard": {
"ignore": [
"soljson.js"
]
}
}