@grani/game-framework
Version:
A game framework with type script
46 lines (45 loc) • 1.32 kB
JSON
{
"name": "@grani/game-framework",
"version": "0.0.9",
"description": "A game framework with type script",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage --passWithNoTests",
"format": "prettier --write \"src/**/*.ts\" ",
"build": "tsc",
"type": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test && yarn run lint",
"preversion ": "yarn run lint",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"grani",
"game-framework"
],
"author": "Nolan Master",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}