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/remix-resolve/package.json

43 lines
832 B

{
"name": "remix-resolve",
"version": "0.0.1",
"description": "Solidity import resolver engine",
"main": "./src/index.js",
"bin": {
"remix-resolve": "./bin/remix-resolve"
},
"scripts": {
"build": "tsc",
"lint": "standard",
"test": "standard && mocha tests/ -t 300000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix.git"
},
"keywords": [
"solidity",
"remix",
"resolve",
"import"
],
"author": "Remix Team",
"license": "MIT",
"standard": {
"ignore": [
"tests/"
]
},
"dependencies": {
"axios": "^0.18.0",
"solc": "^0.5.0",
"url": "^0.11.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"mocha": "^5.1.0",
"standard": "^12.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}