Add copy instance address to clipboard
Showing
... | ... | @@ -92,11 +92,15 @@ |
}, | ||
"browserify": { | ||
"transform": [ | ||
["babelify", { | ||
[ | ||
"babelify", | ||
{ | ||
"sourceMapsAbsolute": false, | ||
"sourceMaps": true, | ||
"plugins": [ | ||
["fast-async", { | ||
[ | ||
"fast-async", | ||
{ | ||
"runtimePattern": null, | ||
"compiler": { | ||
"es7": true, | ||
... | ... | @@ -104,12 +108,23 @@ |
"promises": true, | ||
"wrapAwait": true | ||
} | ||
}], | ||
["yo-yoify"], ["transform-object-assign"] | ||
} | ||
], | ||
[ | ||
"yo-yoify" | ||
], | ||
"presets": ["es2015"] | ||
}], | ||
["uglifyify"] | ||
[ | ||
"transform-object-assign" | ||
] | ||
], | ||
"presets": [ | ||
"es2015" | ||
] | ||
} | ||
], | ||
[ | ||
"uglifyify" | ||
] | ||
] | ||
}, | ||
"scripts": { | ||
... | ... | @@ -136,5 +151,8 @@ |
"test": "standard; npm run csslint; node test/index.js", | ||
"test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest", | ||
"watch": "watchify src/index.js --transform-key=development -dv -p browserify-reload -o build/app.js" | ||
}, | ||
"dependencies": { | ||
"clipboard-copy": "^1.2.0" | ||
} | ||
} |
Please
register
or
sign in
to comment