Add copy instance address to clipboard
Showing
... | @@ -92,24 +92,39 @@ | ... | @@ -92,24 +92,39 @@ |
}, | }, | ||
"browserify": { | "browserify": { | ||
"transform": [ | "transform": [ | ||
["babelify", { | [ | ||
"sourceMapsAbsolute": false, | "babelify", | ||
"sourceMaps": true, | { | ||
"plugins": [ | "sourceMapsAbsolute": false, | ||
["fast-async", { | "sourceMaps": true, | ||
"runtimePattern": null, | "plugins": [ | ||
"compiler": { | [ | ||
"es7": true, | "fast-async", | ||
"noRuntime": true, | { | ||
"promises": true, | "runtimePattern": null, | ||
"wrapAwait": true | "compiler": { | ||
} | "es7": true, | ||
}], | "noRuntime": true, | ||
["yo-yoify"], ["transform-object-assign"] | "promises": true, | ||
], | "wrapAwait": true | ||
"presets": ["es2015"] | } | ||
}], | } | ||
["uglifyify"] | ], | ||
[ | |||
"yo-yoify" | |||
], | |||
[ | |||
"transform-object-assign" | |||
] | |||
], | |||
"presets": [ | |||
"es2015" | |||
] | |||
} | |||
], | |||
[ | |||
"uglifyify" | |||
] | |||
] | ] | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
... | @@ -136,5 +151,8 @@ | ... | @@ -136,5 +151,8 @@ |
"test": "standard; npm run csslint; node test/index.js", | "test": "standard; npm run csslint; node test/index.js", | ||
"test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest", | "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" | "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