UNPKG

stellar-keystore

Version:

A library to aid in the generation of stellar keystore files

19 lines (16 loc) 342 B
/** * Created by istrauss on 5/9/2017. */ const {series, rimraf} = require('nps-utils'); module.exports = { scripts: { default: 'nps run', build: series( 'nps transpile' ), transpile: series( rimraf('dist'), 'babel src -d dist', ) } };