1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-10 16:29:48 +00:00
8bitworkshop/package.json

34 lines
792 B
JSON
Raw Normal View History

2016-12-15 20:21:51 -05:00
{
2017-01-11 21:02:23 -05:00
"name": "8bitworkshop",
2017-01-26 21:59:34 -05:00
"version": "1.0.0",
2016-12-15 20:21:51 -05:00
"author": "Steven Hugg",
2017-01-11 21:02:23 -05:00
"dependencies": {},
2016-12-15 20:21:51 -05:00
"devDependencies": {
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.1.0"
2017-01-11 21:02:23 -05:00
},
"description": "8bitworkshop.com",
"main": "main.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
2017-01-14 11:14:25 -05:00
"test": "npm run test-node && npm run test-browser",
2017-01-21 08:13:36 -05:00
"test-node": "mocha --recursive --timeout 5000 test/cli",
2017-01-14 11:14:25 -05:00
"test-browser": "mocha-phantomjs ./testemu.html"
2017-01-11 21:02:23 -05:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/sehugg/8bitworkshop.git"
},
"keywords": [
"8bit"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sehugg/8bitworkshop/issues"
},
"homepage": "https://github.com/sehugg/8bitworkshop#readme"
2016-12-15 20:21:51 -05:00
}