-
Notifications
You must be signed in to change notification settings - Fork 475
/
package.json
82 lines (82 loc) · 2.39 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
76
77
78
79
80
81
82
{
"name": "solc",
"version": "0.8.28",
"description": "Solidity compiler",
"main": "index.js",
"bin": {
"solcjs": "solc.js"
},
"scripts": {
"build": "tsc",
"postbuild": "node build/postbuild.js && cp README.md LICENSE dist/",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"updateBinary": "node build/clean.js && ts-node ./downloadCurrentVersion.ts && ts-node ./verifyVersion.ts",
"prepack": "node build/pack-publish-block.js",
"build:tarball": "npm run updateBinary && npm run build && BYPASS_SAFETY_CHECK=true npm pack ./dist",
"publish:tarball": "tarball=$(npm run --silent tarballName) && ls \"$tarball\" && BYPASS_SAFETY_CHECK=true npm publish \"$tarball\"",
"tarballName": "jq --raw-output '.name + \"-\" + .version + \".tgz\"' package.json",
"copyTestFiles": "cp -r ./test/resources ./dist/test/",
"pretest": "npm run lint && npm run build && npm run copyTestFiles",
"test": "cd dist && tape ./test/index.js",
"coverage": "nyc npm run test",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/solc-js.git"
},
"keywords": [
"ethereum",
"solidity",
"compiler"
],
"engines": {
"node": ">=10.0.0"
},
"files": [
"common/*.js",
"bindings/*.js",
"*.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",
"js-sha3": "0.8.0",
"memorystream": "^0.3.1",
"semver": "^5.5.0",
"tmp": "0.0.33"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/semver": "^7.3.9",
"@types/tape": "^4.13.2",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"coveralls": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"nyc": "^15.1.0",
"tape": "^4.11.0",
"tape-spawn": "^1.4.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"nyc": {
"exclude": [
"soljson.js",
"dist"
]
}
}