forked from NomicFoundation/truffle-flattener
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 956 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
{
"name": "@zemse/solidity-flattener",
"version": "1.5.0",
"description": "Solidity Flattener concats solidity files developed under Truffle with all of their dependencies",
"bin": {
"truffle-flattener": "index.js",
"solidity-flattener": "index.js"
},
"scripts": {
"test": "mocha tests/tests.js",
"prettier": "prettier --write index.js tests/tests.js"
},
"keywords": [
"ethereum",
"solidity",
"truffle",
"smart-contracts"
],
"homepage": "https://github.com/zemse/solidity-flattener",
"repository": "github:zemse/solidity-flattener",
"author": "Nomic Labs SRL",
"license": "MIT",
"dependencies": {
"@resolver-engine/imports-fs": "^0.2.2",
"@solidity-parser/parser": "^0.8.0",
"find-up": "^2.1.0",
"mkdirp": "^1.0.4",
"tsort": "0.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.0.0",
"openzeppelin-solidity": "2.1.2",
"prettier": "^1.16.4"
}
}