-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
35 lines (35 loc) · 916 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
{
"name": "truffle-flattener",
"version": "1.6.0",
"description": "Truffle Flattener concats solidity files developed under Truffle with all of their dependencies",
"bin": {
"truffle-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/nomiclabs/truffle-flattener",
"repository": "github:nomiclabs/truffle-flattener",
"author": "Nomic Labs SRL",
"license": "MIT",
"dependencies": {
"@resolver-engine/imports-fs": "^0.2.2",
"@solidity-parser/parser": "^0.14.3",
"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"
}
}