|
|
|
@ -18,6 +18,7 @@ |
|
|
|
|
}, |
|
|
|
|
"devDependencies": { |
|
|
|
|
"babel-cli": "^6.16.0", |
|
|
|
|
"babel-eslint": "^7.1.1", |
|
|
|
|
"babel-plugin-check-es2015-constants": "^6.8.0", |
|
|
|
|
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0", |
|
|
|
|
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0", |
|
|
|
@ -37,8 +38,10 @@ |
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "^6.8.0", |
|
|
|
|
"babel-plugin-transform-es2015-unicode-regex": "^6.11.0", |
|
|
|
|
"babel-plugin-transform-regenerator": "^6.16.1", |
|
|
|
|
"babelify": "^7.3.0", |
|
|
|
|
"browserify": "^13.0.1", |
|
|
|
|
"ethereumjs-util": "^4.5.0", |
|
|
|
|
"fast-async": "^6.1.2", |
|
|
|
|
"http-server": "^0.9.0", |
|
|
|
|
"nightwatch": "^0.9.5", |
|
|
|
|
"solc": "^0.4.3", |
|
|
|
@ -53,8 +56,8 @@ |
|
|
|
|
"start_node": "./runNode.sh", |
|
|
|
|
"start_eth": "npm run warning_message; eth -j --rpccorsdomain '*'", |
|
|
|
|
"start_geth": "npm run warning_message; geth --rpc --rpcapi 'web3,eth,debug' --rpcport 8545 --rpccorsdomain '*'", |
|
|
|
|
"build": "mkdir build; browserify src/index.js -g yo-yoify -o build/app.js; babel build/app.js --out-file build/app.js", |
|
|
|
|
"test": "standard && tape ./test/tests.js", |
|
|
|
|
"build": "mkdir build; browserify src/index.js -g yo-yoify -o build/app.js -t [ babelify ]; babel --plugins=transform-es2015-template-literals build/app.js --out-file build/app.js", |
|
|
|
|
"test": "babel src --out-dir babelify-src; tape ./test/tests.js", |
|
|
|
|
"serve": "http-server .", |
|
|
|
|
"nightwatch_local": "nightwatch --config nightwatch.js --env local", |
|
|
|
|
"nightwatch_remote_firefox": "nightwatch --config nightwatch.js --env default", |
|
|
|
@ -79,6 +82,7 @@ |
|
|
|
|
"node_modules/*", |
|
|
|
|
"build/*", |
|
|
|
|
"test/resources/*" |
|
|
|
|
] |
|
|
|
|
], |
|
|
|
|
"parser": "babel-eslint" |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|