d6381f40 by Adam Heath

Move the primary file, and define it as main.

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