Files
website/package.json
T
Andrew Miner ff17d5f9ba Show markdown description text on item detail page
* Update build process to *not* copy over prerendered pages during a
  regular build (only during a `dist` build)
* Add dependency on npm "markdown" package and include it in the
  scripts loaded in the default layout
* Update the Item model to be able to load from a *.cg file
* Add an ItemParser to process the `item.cg` file
* Update the general parser to be able to work with HereDoc-style
  text blocks
* Add a markdown-specific stylesheet
* Add a sample of the `item.cg` file format (Advanced Crafting Table)
2015-03-08 22:24:15 -07:00

47 lines
1.2 KiB
JSON

{
"name": "crafting-guide",
"version": "1.0.0",
"description": "crafting-guide ==============",
"main": "site/scripts/main.js",
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewminer/crafting-guide.git"
},
"author": "Andrew Miner",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrewminer/crafting-guide/issues"
},
"homepage": "https://github.com/andrewminer/crafting-guide",
"devDependencies": {
"coffeeify": "^1.0.0",
"express": "^4.10.6",
"grunt": "^0.4.5",
"grunt-browserify": "^3.2.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-jade": "^0.13.0",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-uglify": "^0.7.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-exorcise": "^0.2.0",
"grunt-rename": "^0.1.4",
"underscore": "^1.7.0"
},
"dependencies": {
"backbone": "^1.1.2",
"chai": "^1.10.0",
"jade": "^1.8.2",
"jquery": "^2.1.3",
"markdown": "^0.5.0",
"mocha": "^2.0.1",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"underscore": "^1.7.0",
"when": "^3.6.4"
}
}