source: Dev/trunk/node_modules/grunt-dojo/package.json @ 532

Last change on this file since 532 was 484, checked in by hendrikvanantwerpen, 11 years ago

Commit node_modules, to make checkouts and builds more deterministic.

File size: 3.9 KB
RevLine 
[484]1{
2  "name": "grunt-dojo",
3  "description": "Build Dojo inside a Grunt task",
4  "version": "0.2.4",
5  "homepage": "https://github.com/phated/grunt-dojo",
6  "author": {
7    "name": "Blaine Bublitz",
8    "email": "blaine@iceddev.com",
9    "url": "http://iceddev.com"
10  },
11  "repository": {
12    "type": "git",
13    "url": "git://github.com/phated/grunt-dojo.git"
14  },
15  "bugs": {
16    "url": "https://github.com/phated/grunt-dojo/issues"
17  },
18  "licenses": [
19    {
20      "type": "MIT",
21      "url": "https://github.com/phated/grunt-dojo/blob/master/LICENSE-MIT"
22    }
23  ],
24  "main": "Gruntfile.js",
25  "engines": {
26    "node": ">=0.8.x"
27  },
28  "scripts": {
29    "test": "grunt"
30  },
31  "peerDependencies": {
32    "grunt": "~0.4.0"
33  },
34  "devDependencies": {
35    "grunt": "~0.4.0",
36    "grunt-contrib-jshint": "~0.2.0",
37    "grunt-contrib-watch": "~0.2.0"
38  },
39  "keywords": [
40    "gruntplugin"
41  ],
42  "readme": "# grunt-dojo\n\nBuild Dojo inside a Grunt task\n\n## Compatibility\n\ngrunt-dojo `~0.2.0` works with Grunt `~0.4.0`\n\nFor Grunt `~0.3.0`: use `grunt-dojo@0.1.3`\n\n## Getting Started\nInstall this grunt plugin next to your project's [grunt.js gruntfile][getting_started] with: `npm install grunt-dojo`\n\nThen add this line to your project's `grunt.js` gruntfile:\n\n```javascript\ngrunt.loadNpmTasks('grunt-dojo');\n```\n\n[grunt]: http://gruntjs.com/\n[getting_started]: https://github.com/gruntjs/grunt/blob/master/docs/getting_started.md\n\n## Usage\n\n```javascript\ndojo: {\n  dist: {\n    options: {\n      dojo: 'path/to/dojo.js', // Path to dojo.js file in dojo source\n      load: 'build', // Optional: Utility to bootstrap (Default: 'build')\n      profile: 'app.profile.js', // Profile for build\n      appConfigFile: '', // Optional: Config file for dojox/app\n      package: '', // Optional: Location to search package.json (Default: nothing)\n      packages [], // Optional: Array of locations of package.json (Default: nothing)\n      require: '', // Optional: Module to require for the build (Default: nothing)\n      requires [], // Optional: Array of modules to require for the build (Default: nothing)\n      cwd: './', // Directory to execute build within\n      dojoConfig: '' // Optional: Location of dojoConfig (Default: null),\n      // Optional: Base Path to pass at the command line\n      // Takes precedence over other basePaths\n      // Default: null\n      basePath: ''\n    }\n  },\n  options: {\n    // You can also specify options to be used in all your tasks\n    dojo: 'path/to/dojo.js', // Path to dojo.js file in dojo source\n    load: 'build', // Optional: Utility to bootstrap (Default: 'build')\n    profile: 'app.profile.js', // Profile for build\n    appConfigFile: '', // Optional: Config file for dojox/app\n    package: '', // Optional: Location to search package.json (Default: nothing)\n    packages [], // Optional: Array of locations of package.json (Default: nothing)\n    require: '', // Optional: Module to require for the build (Default: nothing)\n    requires [], // Optional: Array of modules to require for the build (Default: nothing)\n    cwd: './', // Directory to execute build within\n    dojoConfig: '' // Optional: Location of dojoConfig (Default: null),\n    // Optional: Base Path to pass at the command line\n    // Takes precedence over other basePaths\n    // Default: null\n    basePath: ''\n  }\n}\n```\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [grunt][grunt].\n\n## Release History\n_(Nothing yet)_\n\n## License\nCopyright (c) 2013 Blaine Bublitz\nLicensed under the MIT license.\n",
43  "readmeFilename": "README.md",
44  "_id": "grunt-dojo@0.2.4",
45  "dist": {
46    "shasum": "fd1a8c306b6355e88120ab431d3e45626b9d8ede"
47  },
48  "_from": "grunt-dojo@~0.2.3",
49  "_resolved": "https://registry.npmjs.org/grunt-dojo/-/grunt-dojo-0.2.4.tgz"
50}
Note: See TracBrowser for help on using the repository browser.