csc-tools
Version:
Tools for Cincinnati Smash Classic
47 lines (46 loc) • 1.17 kB
JSON
{
"name": "csc-tools",
"version": "1.1.0",
"description": "Tools for Cincinnati Smash Classic",
"main": "lib/index.js",
"bin": {
"csc-tools": "./bin/csc-tools.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sripberger/csc-tools.git"
},
"keywords": [
"tournament",
"smash",
"ssbm"
],
"scripts": {
"lint": "eslint . || exit 0",
"unit": "mocha ./test/setup.js ./test/unit --recursive -R spec || exit 0",
"integration": "mocha ./test/setup.js ./test/integration --recursive -R spec || exit 0",
"test": "npm run unit; npm run integration",
"docs": "documentation build -f html -o docs"
},
"author": "Steve Ripberger",
"license": "Apache-2.0",
"devDependencies": {
"chai": "^3.5.0",
"documentation": "^4.0.0-rc.1",
"eslint": "^3.19.0",
"mocha": "^3.4.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0"
},
"dependencies": {
"cliff": "^0.1.10",
"colors": "^1.1.2",
"commander": "^2.11.0",
"csv-parse": "^1.2.0",
"csv-stringify": "^1.0.4",
"gene-lib": "0.0.2",
"get-stdin": "^5.0.1",
"lodash": "^4.17.4",
"pify": "^3.0.0"
}
}