forked from merklejerk/solpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 919 Bytes
/
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
{
"name": "solpp",
"version": "0.9.2",
"description": "A solidity preprocessor and flattener CLI and library",
"repository": "https://github.com/merklejerk/solpp",
"author": "Lawrence Forman <me@merklejerk.com>",
"license": "Apache-2.0",
"private": false,
"main": "src/index.js",
"bin": {
"solpp": "src/solpp.js"
},
"scripts": {
"generate-parser": "./antlr/generate.sh",
"test": "mocha --timeout 10000 ./test/*.js",
"start": "node ./src/solpp"
},
"dependencies": {
"antlr4": "^4.7.1",
"axios": "^0.18.0",
"bn-str-256": "^1.9.1",
"commander": "^2.19.0",
"ethereumjs-util": "^6.0.0",
"lodash": "^4.17.11",
"mz": "^2.7.0",
"semver": "^5.6.0"
},
"devDependencies": {
"mocha": "^5.2.0"
},
"keywords": [
"solidity",
"preprocessor",
"flattener",
"ethereum",
"blockchain",
"expressions",
"templates",
"cli",
"library",
"macro",
"macros",
"smart contract"
]
}