Skip to content

Commit

Permalink
npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed Sep 23, 2015
1 parent 532b887 commit 44525db
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "npm run build-bundle && npm run build-standalone",
"build-bundle": "npm run bundle && npm run bundle-uglify",
"build-standalone": "npm run standalone && npm run standalone-uglify",
"bundle": "browserify -do dist/octet.js index.js",
"bundle-uglify": "uglifyjs -m -c -o dist/octet.min.js dist/octet.js",
"standalone": "browserify -s octet -do dist/octet.standalone.js index.js",
"standalone-uglify": "uglifyjs -m -c -o dist/octet.standalone.min.js dist/octet.standalone.js",
"test": "standard && node test.js"
},
"dependencies": {
Expand Down

0 comments on commit 44525db

Please sign in to comment.