rollback package.json

pull/7/head
yann300 8 years ago
parent 189e6ee38b
commit 9f8ef39670
  1. 72
      package.json

@ -18,9 +18,8 @@
}, },
"devDependencies": { "devDependencies": {
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-yo-yoify": "^0.4.0",
"babel-preset-es2015": "^6.24.0", "babel-preset-es2015": "^6.24.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babelify": "^7.3.0", "babelify": "^7.3.0",
"browserify": "^13.0.1", "browserify": "^13.0.1",
"ethereum-common": "0.0.18", "ethereum-common": "0.0.18",
@ -41,7 +40,7 @@
"yo-yoify": "^3.1.0" "yo-yoify": "^3.1.0"
}, },
"scripts": { "scripts": {
"build": "mkdirp build; browserify src/index.js > build/app.js -d", "build": "mkdirp build; browserify src/index.js > build/app.js",
"lint": "standard | notify-error", "lint": "standard | notify-error",
"nightwatch_local": "nightwatch --config nightwatch.js --env local", "nightwatch_local": "nightwatch --config nightwatch.js --env local",
"nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome", "nightwatch_remote_chrome": "nightwatch --config nightwatch.js --env chrome",
@ -82,60 +81,23 @@
], ],
"parser": "babel-eslint" "parser": "babel-eslint"
}, },
"babel": {
"plugins": [
"transform-es2015-template-literals",
"transform-es2015-literals",
"transform-es2015-function-name",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-classes",
"transform-es2015-object-super",
"transform-es2015-shorthand-properties",
"transform-es2015-duplicate-keys",
"transform-es2015-computed-properties",
"transform-es2015-for-of",
"transform-es2015-sticky-regex",
"transform-es2015-unicode-regex",
"check-es2015-constants",
"transform-es2015-spread",
"transform-es2015-parameters",
"transform-es2015-destructuring",
"transform-es2015-block-scoping"
]
},
"browserify": { "browserify": {
"transform": [ "transform": [
[ ["babelify", {
"babelify", "plugins": [
{ ["fast-async", {
"sourceMapsAbsolute": false, "runtimePatten": null,
"sourceMaps": true, "compiler": {
"plugins": [ "promises": true,
[ "es7": true,
"fast-async", "noRuntime": true,
{ "wrapAwait": true
"runtimePattern": null, }
"compiler": { }], "transform-object-assign"
"es7": true, ]
"noRuntime": true, }],
"promises": true, ["yo-yoify"],
"wrapAwait": true ["babelify", { "presets": ["es2015"] }]
}
}
],
[
"yo-yoify"
],
[
"transform-object-assign"
]
],
"presets": [
"es2015"
]
}
]
] ]
} }
} }

Loading…
Cancel
Save