remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/libs/remix-astwalker/package.json

58 lines
1.6 KiB

{
"name": "@remix-project/remix-astwalker",
2 years ago
"version": "0.0.55",
"description": "Tool to walk through Solidity AST",
"main": "src/index.js",
"scripts": {
2 years ago
"test": "./../../node_modules/.bin/nyc --reporter=lcov --require ts-node/register --require tsconfig-paths/register ./../../node_modules/.bin/tape ./tests/*.ts | ./../../node_modules/.bin/tap-spec; ./../../node_modules/.bin/nyc report ---reporter=text"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix-project.git"
},
"keywords": [
"Solidity",
"AST",
"remix"
],
"author": "Remix Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix-project/issues"
},
"homepage": "https://github.com/ethereum/remix-project/tree/master/libs/remix-astwalker#readme",
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
]
},
"dependencies": {
"@ethereumjs/block": "^4.1.0",
"@ethereumjs/tx": "^4.0.2",
"@ethereumjs/util": "^8.0.3",
"@ethereumjs/vm": "^6.3.0",
2 years ago
"@remix-project/remix-lib": "^0.5.25",
3 years ago
"@types/tape": "^4.2.33",
"async": "^2.6.2",
3 years ago
"ethers": "^5.4.2",
"ethjs-util": "^0.1.6",
"nyc": "^13.3.0",
"string-similarity": "^4.0.4",
"tape": "^4.10.1",
"ts-node": "^8.0.3",
3 years ago
"typescript": "^3.4.3",
"web3": "^1.5.1"
},
"devDependencies": {
"tap-spec": "^5.0.0"
},
"typings": "src/index.d.ts",
2 years ago
"gitHead": "79fcaa673265865732f1b996ac48b2e20aba1995",
"types": "./src/index.d.ts"
}