8f9ef904 by Adam Heath

Start working at using grunt/npm/bower for everything.

1 parent 5a5b030e
1 {
2 "directory": "src/lib"
3 }
1 .*.swp
2 .tmp/
3 bin/coverage/
4 dist/
5 node_modules/
6 src/lib/
7 .grunt/
8 _SpecRunner.html
This diff is collapsed. Click to expand it.
1 {
2 "name": "rivets-error-binder",
3 "version": "0.0.0",
4 "authors": [
5 "Adam Heath <doogie@brainfood.com>"
6 ],
7 "main": [
8 "src/scripts/rivets-error-binder.js"
9 ],
10 "private": true,
11 "ignore": [
12 "**/.*",
13 "node_modules",
14 "src/lib",
15 "test"
16 ],
17 "dependencies": {
18 "rivets": "~0.6.6",
19 "requirejs": "~2.1.10"
20 }
21 }
1 {
2 "name": "rivets-error-binder",
3 "version": "0.0.0",
4 "main": [
5 "src/scripts/rivets-error-binder.js"
6 ],
7 "dependencies": {
8 "rivets": "~0.6.6",
9 "requirejs": "~2.1.10"
10 },
11 "devDependencies": {
12 "bower-requirejs": "~0.9.2",
13 "grunt": "~0.4.1",
14 "grunt-contrib-copy": "~0.4.1",
15 "grunt-contrib-concat": "~0.3.0",
16 "grunt-contrib-uglify": "~0.2.0",
17 "grunt-contrib-jshint": "~0.7.0",
18 "grunt-contrib-cssmin": "~0.7.0",
19 "grunt-contrib-connect": "~0.5.0",
20 "grunt-contrib-clean": "~0.5.0",
21 "grunt-contrib-htmlmin": "~0.1.3",
22 "grunt-bower-install": "~0.7.0",
23 "grunt-contrib-imagemin": "~0.2.0",
24 "grunt-contrib-watch": "~0.5.2",
25 "grunt-rev": "~0.1.0",
26 "grunt-autoprefixer": "~0.5.0",
27 "grunt-usemin": "~0.1.10",
28 "grunt-mocha": "~0.4.0",
29 "grunt-newer": "~0.6.0",
30 "grunt-svgmin": "~0.2.0",
31 "grunt-concurrent": "~0.4.0",
32 "load-grunt-tasks": "~0.2.0",
33 "time-grunt": "~0.2.0",
34 "jshint-stylish": "~0.1.3",
35 "grunt-contrib-requirejs": "~0.4.0",
36 "grunt-bower-requirejs": "~0.8.4",
37 "grunt-template-jasmine-istanbul": "~0.2.6",
38 "grunt-template-jasmine-requirejs": "~0.1.10",
39 "grunt-contrib-jasmine": "~0.5.3"
40 },
41 "engines": {
42 "node": ">=0.8.0"
43 }
44 }
45