d6381f40 by Adam Heath

Move the primary file, and define it as main.

1 parent 17f21fd1
1 /* global module */
2
3 module.exports = function(grunt) {
4 /* global require */
5 'use strict';
6
7 var common = {};
8 common.jshint = {
9 options: {
10 },
11 browserOptions: {
12 },
13 };
14
15 var montyPython = require('./grunt-monty-python')(grunt);
16 montyPython.createConfig(common);
17 };
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
10 "engines": { 10 "engines": {
11 "node": ">=0.8.0" 11 "node": ">=0.8.0"
12 }, 12 },
13 "main": "grunt-monty-python",
13 "dependencies": { 14 "dependencies": {
14 "grunt": "~0", 15 "grunt": "~0",
15 "grunt-contrib-csslint": "~0", 16 "grunt-contrib-csslint": "~0",
......