Files
website/package.json
T
Andrew Miner d75ee61fbe Update package.json to properly specify deps
Update the `package.json` file to properly specify the dependency on
`crafting-guide-common` by referring to it's GitHub repository. This
should allow someone working on this package to have NPM donwload it
like anything else (including CircleCI).

Also change the `link-deps` Grunt command to `use-local-deps` and
make it remove the NPM-downloaded version and replace it with a
symlink to a local copy.
2015-03-25 15:12:37 -07:00

50 lines
1.3 KiB
JSON

{
"name": "crafting-guide",
"version": "1.0.0",
"description": "crafting-guide ==============",
"main": "site/scripts/main.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewminer/crafting-guide.git"
},
"author": "Andrew Miner",
"bugs": {
"url": "https://github.com/andrewminer/crafting-guide/issues"
},
"homepage": "https://github.com/andrewminer/crafting-guide",
"devDependencies": {
"chai": "^1.10.0",
"coffee-script": "^1.9.1",
"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-mocha-test": "^0.12.7",
"grunt-rename": "^0.1.4",
"grunt-rsync": "^0.6.2",
"mocha": "^2.2.1",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0",
"underscore": "^1.7.0"
},
"dependencies": {
"backbone": "^1.1.2",
"crafting-guide-common": "git://github.com/andrewminer/crafting-guide-common",
"jade": "^1.8.2",
"jquery": "^2.1.3",
"markdown": "^0.5.0",
"underscore": "^1.7.0",
"when": "^3.6.4"
}
}