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

49 lines
1.1 KiB

{
"name": "remix",
"version": "0.0.1",
"description": "Ethereum IDE and tools for the web",
"contributors": [
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
},
{
"name": "Liana Husikyan",
"email": "liana@ethdev.com"
}
],
"main": "index.js",
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"web3": "^0.15.3"
},
"devDependencies": {
"babel-preset-react": "^6.5.0",
9 years ago
"babelify": "^7.2.0",
"standard": "^7.0.1"
},
"scripts": {
"start_node": "eth --rpccorsdomain \"*\" -j -v 0",
9 years ago
"build": "mkdir -p build; browserify -t [ babelify --presets [ react ] ] src/index.js -o build/app.js",
"test" : "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remix.git"
},
"author": "cpp-ethereum team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remix/issues"
},
9 years ago
"homepage": "https://github.com/ethereum/remix#readme",
"standard": {
9 years ago
"global": ["web3"],
"ignore": [
"node_modules/*",
"build/*"
]
9 years ago
}
}