-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·51 lines (51 loc) · 2.11 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
49
50
51
{
"name": "sol2ligo",
"version": "1.0.0",
"description": "Transpiler from Solidity to PascalLIGO language",
"main": "lib/index.js",
"types": "src/index.d.ts",
"scripts": {
"install": "iced -o lib -c src",
"test": "mocha --timeout 5000 --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test && istanbul report",
"test-fast": "SKIP_SOLC=1 mocha --timeout 5000 --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test && istanbul report",
"test-ext-compiler": "EXT_COMPILER=1 mocha --timeout 5000 --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test && istanbul report",
"test-emulator": "EMULATOR=1 npm run test-specific emulator",
"test-ext-compiler-fast": "SKIP_SOLC=1 EXT_COMPILER=1 mocha --timeout 5000 --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test && istanbul report",
"test-specific": "mocha --timeout 5000 --recursive --compilers coffee:iced-coffee-script/register test -g"
},
"bin": {
"sol2ligo": "bin/sol2ligo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madfish-solutions/sol2ligo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/madfish-solutions/sol2ligo/issues"
},
"homepage": "https://github.com/madfish-solutions/sol2ligo#readme",
"dependencies": {
"ast4gen": "github:madfish-solutions/ast4gen",
"fy": "github:hu2prod/fy",
"minimist": "^1.2.3",
"shell-escape": "^0.2.0",
"solc": "^0.5.14",
"type": "github:madfish-solutions/ast4gen-type"
},
"devDependencies": {
"@truffle/artifactor": "^4.0.60",
"@truffle/config": "^1.2.18",
"@truffle/environment": "^0.2.7",
"@truffle/resolver": "^6.0.1",
"truffle": "^5.1.26",
"truffle-hdwallet-provider": "^1.0.17",
"ganache-cli": "^6.9.1",
"iced-coffee-coverage": "^1.0.21",
"iced-coffee-script": "^108.0.14",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}