-
Notifications
You must be signed in to change notification settings - Fork 475
/
package.json
75 lines (75 loc) · 1.74 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
71
72
73
74
75
{
"name": "solc",
"version": "0.8.10",
"description": "Solidity compiler",
"main": "index.js",
"bin": {
"solcjs": "solcjs"
},
"scripts": {
"lint": "node ./node_modules/semistandard/bin/cmd.js",
"updateBinary": "node downloadCurrentVersion.js && node verifyVersion.js",
"prepublishOnly": "npm run updateBinary",
"pretest": "npm run lint",
"test": "tape ./test/index.js",
"coverage": "node ./node_modules/nyc/bin/nyc.js --reporter=lcov --reporter=text-summary ./node_modules/tape/bin/tape ./test/index.js",
"coveralls": "npm run coverage && node ./node_modules/coveralls/bin/coveralls.js <coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/solc-js.git"
},
"keywords": [
"ethereum",
"solidity",
"compiler"
],
"engines": {
"node": ">=8.0.0"
},
"files": [
"abi.js",
"index.js",
"linker.js",
"smtchecker.js",
"smtsolver.js",
"solcjs",
"soljson.js",
"translate.js",
"wrapper.js"
],
"author": "chriseth",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/solc-js/issues"
},
"homepage": "https://github.com/ethereum/solc-js#readme",
"dependencies": {
"command-exists": "^1.2.8",
"commander": "^8.1.0",
"follow-redirects": "^1.12.1",
"fs-extra": "^0.30.0",
"js-sha3": "0.8.0",
"memorystream": "^0.3.1",
"require-from-string": "^2.0.0",
"semver": "^5.5.0",
"tmp": "0.0.33"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^14.1.0",
"semistandard": "^12.0.0",
"tape": "^4.11.0",
"tape-spawn": "^1.4.2"
},
"semistandard": {
"ignore": [
"soljson.js"
]
},
"nyc": {
"exclude": [
"soljson.js"
]
}
}