evidently-input
Version:
TypeScript powered for easily handling input in your games.
66 lines (65 loc) • 1.89 kB
JSON
{
"name": "evidently-input",
"version": "1.1.2",
"description": "TypeScript powered for easily handling input in your games.",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc node_modules/.bin/mocha -r ts-node/register/transpile-only -r test/hookJsdom.js --require source-map-support/register test/**/*.test.*",
"test-watch": "nyc node_modules/.bin/mocha -r ts-node/register/transpile-only -r test/hookJsdom.js --require source-map-support/register test/**/*.test.* --watch --extension ts,js,json",
"clean": "rm -rf dist",
"build": "tsc",
"docs": "typedoc --options typedoc.ts && node docs-clean.js",
"lint": "eslint test/**/*.ts src/**/*.ts",
"lint-fix": "eslint --fix test/**/*.ts src/**/*.ts",
"prepare-publish": "npm run clean && npm run lint && npm run test && npm run build && npm run docs"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text"
],
"all": true
},
"keywords": [
"input",
"keyboard",
"mouse",
"typescript",
"gamedev",
"clean"
],
"author": "Maurycy Zarzycki (Evidently Cube)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.2",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"canvas": "^2.6.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"jsdom": "^15.2.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"replace-in-file": "^3.4.4",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"typedoc": "^0.15.2",
"typedoc-twilio-theme": "^1.0.0",
"typescript": "^3.7.2"
}
}