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

39 lines
717 B

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