Initial commit

This commit is contained in:
WatermelonModders
2022-05-31 12:35:46 -04:00
commit fc5cb0c32c
4097 changed files with 447075 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "node-sunwell",
"version": "0.1.1",
"description": "Canvas based renderer for Hearthstone cards.",
"main": "sunwell.js",
"scripts": {
"start": "node examples/server",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"postpublish": "git push && git push --tags"
},
"repository": "matkl/node-sunwell",
"keywords": [
"hearthstone"
],
"author": "Matthias Klein <matthias@klein.pw>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matkl/node-sunwell/issues"
},
"homepage": "https://github.com/matkl/node-sunwell#readme",
"dependencies": {
"canvas": "^1.3.13"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"express": "^4.13.4",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}