Mercurial > wikked
comparison package.json @ 444:2f68a463cb06
cm: Replace Grunt/RequireJS with Gulp/Browserify.
Yes, I know, this sounds like it's 2014 or something, and cool kids are now
actually on webpack or whatever.
Anyway, besides the change to a `gulpfile`, it also moves all dependencies
over to `npm` (via the `package.json` file), which cleans up the repository
nicely, and replaces awkward JS imports with simpler `require` statements.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 03 Jan 2018 00:51:59 -0800 |
parents | 83df9086e723 |
children | ccac960348a7 |
comparison
equal
deleted
inserted
replaced
443:e117060eaa71 | 444:2f68a463cb06 |
---|---|
1 { | 1 { |
2 "name": "Wikked", | 2 "name": "Wikked", |
3 "version": "0.1.0", | 3 "version": "0.1.0", |
4 "dependencies": {}, | |
5 "devDependencies": { | 4 "devDependencies": { |
6 "grunt": "~0.4.4", | 5 "browser-sync": "^2.23.2", |
7 "grunt-contrib-less": "~0.11.0", | 6 "gulp": "^3.9.1", |
8 "grunt-contrib-requirejs": "~0.4.3", | 7 "gulp-browserify": "^0.5.1", |
9 "grunt-contrib-copy": "~0.5.0", | 8 "gulp-clean-css": "^3.9.2", |
10 "grunt-contrib-imagemin": "~0.6.1", | 9 "gulp-if": "^2.0.2", |
11 "grunt-contrib-jshint": "~0.10.0", | 10 "gulp-imagemin": "^4.1.0", |
12 "grunt-contrib-watch": "~0.6.1" | 11 "gulp-jshint": "^2.1.0", |
12 "gulp-less": "^3.4.0", | |
13 "gulp-notify": "^3.0.0", | |
14 "gulp-uglify": "^3.0.0", | |
15 "gulp-watch": "^4.3.11", | |
16 "jquery": "^3.2.1", | |
17 "jquery-validation": "^1.17.0", | |
18 "jshint": "^2.9.5", | |
19 "less": "^2.7.3", | |
20 "purecss": "^1.0.0", | |
21 "underscore": "^1.8.3", | |
22 "yargs": "^10.0.3" | |
13 }, | 23 }, |
14 "engines": { | 24 "engines": { |
15 "node": ">=0.8.0" | 25 "node": ">=0.8.0" |
26 }, | |
27 "scripts": { | |
28 "build": "gulp" | |
16 } | 29 } |
17 } | 30 } |