-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "stack-packer",
"version": "1.1.8",
"description": "",
"bin": "dist/cli.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf ./dist",
"mocha:ts": "mocha -r ts-node/register",
"test": "yarn mocha:ts ./test/test.ts",
"build": "tsc",
"prepublishOnly": "yarn build",
"dot": "ts-node src/cli ExchangeConfig.sol"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://github.com/d1ll0n/stack-packer",
"bugs": {
"url": "https://github.com/d1ll0n/stack-packer/issues"
},
"dependencies": {
"@d1ll0n/solidity-parser": "^0.0.3",
"@types/antlr4": "^4.7.2",
"@types/lodash": "^4.14.182",
"@types/yargs": "^17.0.10",
"antlr4": "^4.10.1",
"antlr4ts": "^0.5.0-alpha.4",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"number-to-words": "^1.2.4",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^18.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}