mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 11:23:58 +00:00
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "gulp-template",
|
|
"version": "1.0.0",
|
|
"description": "Project template for gulp.js",
|
|
"author": "Riku Rouvila <riku.rouvila@leonidasoy.fi>",
|
|
"license": "MIT",
|
|
"main": "gulpfile.js",
|
|
"scripts": {
|
|
"start": "gulp",
|
|
"build": "gulp build",
|
|
"lint": "eslint src",
|
|
"test": "mocha src/**/__tests__/*.js --compilers js:babel/register --require test/test-helper"
|
|
},
|
|
"keywords": [
|
|
"gulp",
|
|
"template"
|
|
],
|
|
"dependencies": {
|
|
"lodash": "^3.9.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel": "^5.8.23",
|
|
"babel-core": "^5.8.25",
|
|
"babel-eslint": "^4.1.3",
|
|
"babelify": "^6.1.1",
|
|
"browser-sync": "^2.9.4",
|
|
"browserify": "^10.2.1",
|
|
"chai": "^3.0.0",
|
|
"eslint": "^1.5.1",
|
|
"eslint-config-airbnb": "0.0.9",
|
|
"eslint-plugin-react": "^3.4.2",
|
|
"exorcist": "^0.4.0",
|
|
"gulp": "3.9.0",
|
|
"gulp-autoprefixer": "1.0.1",
|
|
"gulp-duration": "0.0.0",
|
|
"gulp-inject": "^3.0.0",
|
|
"gulp-jade": "~0.9.0",
|
|
"gulp-replace": "^0.5.3",
|
|
"gulp-rev": "^4.0.0",
|
|
"gulp-sourcemaps": "^1.3.0",
|
|
"gulp-streamify": "0.0.5",
|
|
"gulp-stylus": "~2.0.0",
|
|
"gulp-uglify": "~1.0.1",
|
|
"gulp-util": "~3.0.1",
|
|
"gulp-watch": "^4.3.4",
|
|
"jsdom": "^5.6.0",
|
|
"mocha": "^2.2.5",
|
|
"node-notifier": "^4.2.1",
|
|
"rimraf": "^2.3.4",
|
|
"vinyl-source-stream": "~1.0.0",
|
|
"vinyl-transform": "^1.0.0",
|
|
"watchify": "^3.2.1"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
[
|
|
"babelify",
|
|
{
|
|
"stage": 0,
|
|
"optional": ["utility.inlineEnvironmentVariables"]
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|