This repository has been archived by the owner on May 4, 2021. It is now read-only.
forked from mrcljx/grunt-liquid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 3.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "grunt-liquid",
"description": "Compile Liquid templates.",
"version": "0.0.8",
"homepage": "https://github.com/app-team/grunt-liquid",
"author": {
"name": "Marcel Jackwerth"
},
"contributors": [
{
"name" : "Saddam Azad",
"email" : "[email protected]",
"url" : "http://appteam.co"
}
],
"repository": {
"type": "git",
"url": "git://github.com/app-team/grunt-liquid.git"
},
"bugs": {
"url": "https://github.com/app-team/grunt-liquid/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/app-team/grunt-liquid/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "grunt test",
"prepublish": "grunt test"
},
"dependencies": {
"liquid-node": "~0.1.0"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.2.0",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-internal": "~0.4.2",
"q": ">= 0.8.12",
"grunt": "~0.4.0",
"minimatch": "~0.2.12",
"grunt-contrib-coffee": "^0.10.1",
"coffee": "~0.0.0",
"grunt-run-grunt": "^0.1.4",
"grunt-coffeelint": "0.0.8"
},
"peerDependencies": {
"q": ">= 0.8.12",
"grunt": "~0.4.0"
},
"keywords": [
"gruntplugin"
],
"readme": "# [grunt](http://gruntjs.com)-liquid [![Build Status](https://travis-ci.org/app-team/grunt-liquid.png?branch=master)](https://travis-ci.org/app-team/grunt-liquid)\n\n> Compile Liquid (node-liquid) templates.\n\n## Getting Started\n\nIf you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide, as it explains how to create a [gruntfile][Getting Started] as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:\n\n```sh\nnpm install --save-dev grunt-liquid\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-liquid');\n```\n\n*Tip: the [load-grunt-tasks](https://github.com/sindresorhus/load-grunt-tasks) module makes it easier to load multiple grunt tasks.*\n\n[grunt]: http://gruntjs.com\n[Getting Started]: https://github.com/gruntjs/grunt/wiki/Getting-started\n\n\n## Documentation\n\nSee the grunt [docs](https://github.com/gruntjs/grunt/wiki) on how to [configure tasks](https://github.com/gruntjs/grunt/wiki/Configuring-tasks) and more advanced usage.\n\n### Example\n\n```js\ngrunt.initConfig({\n liquid: {\n options: {\n includes: 'test/fixtures/inc',\n products: [\n {\n name: \"Wonderflonium\",\n price: \"$9.99\",\n description: \"Great for building freeze rays!\"\n }\n ]\n },\n pages: {\n files: [\n { expand: true, flatten: true, src: 'src/*.liquid', dest: 'dest/', ext: '.html' }\n ]\n }\n },\n});\n\ngrunt.loadNpmTasks('grunt-liquid');\ngrunt.registerTask('default', ['liquid']);\n```\n\n### Options\n\nOptions beside the following are treated as variables that are injected into the template.\n\n#### includes\n\nType: `Array` or `String` \nDefault: `\"\"`\n\n## License\n\nMIT © Marcel Jackwerth",
"readmeFilename": "README.md",
"_id": "[email protected]",
"dist": {
"shasum": "74471403c49203de70d5fce11e2dd5e6e17de788"
},
"_from": "[email protected]"
}