Created
April 22, 2016 10:36
-
-
Save ruudud/68143a7a4e455367d27340330658fbca to your computer and use it in GitHub Desktop.
npm scripts build system
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "airbnb/base" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "myproject", | |
"version": "0.0.1", | |
"description": "myproject desc", | |
"main": "lib/index.js", | |
"scripts": { | |
"install": "npm run build", | |
"build": "browserify lib/index.js -o dist/aid.js", | |
"watch": "budo lib/index.js -d public/ -o -l --onupdate 'npm test'", | |
"test": "eslint lib/*.js" | |
}, | |
"author": "Pål Ruud", | |
"license": "ISC", | |
"devDependencies": { | |
"babel-preset-es2015": "^6.6.0", | |
"babelify": "^7.2.0", | |
"browserify": "^13.0.0", | |
"budo": "^8.2.1", | |
"eslint": "^2.8.0", | |
"eslint-config-airbnb": "^7.0.0" | |
}, | |
"browserify": { | |
"transform": [ | |
[ | |
"babelify", { "presets": [ "es2015" ] } | |
] | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment