forked from EricxStone/sol-flattener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 783 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
{
"name": "@ericxstone/sol-flattener",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"test": "mocha --require ts-node/register ./tests/**/*.ts",
"build": "tsc"
},
"dependencies": {
"@types/node": "^15.9.0",
"luxon": "^1.27.0",
"node-fetch": "^2.6.1",
"typescript": "^4.3.2"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.8.5",
"@types/chai": "^4.2.19",
"@types/luxon": "^1.26.5",
"@types/mocha": "^8.2.2",
"@types/node-fetch": "^2.5.10",
"chai": "^4.3.4",
"env-cmd": "^10.1.0",
"mocha": "^9.0.1",
"prettier": "^2.3.1",
"ts-node": "^10.0.0"
},
"bin": {
"flatten-sol": "./dist/cli.js"
}
}