UNPKG

npc-aspect

Version:

Library for NPC aspect modelling.

68 lines (67 loc) 1.42 kB
{ "name": "npc-aspect", "version": "1.1.0", "description": "Library for NPC aspect modelling.", "main": "dist/index.js", "umd:main": "dist/index.umd.js", "module": "dist/index.mjs", "source": "src/index.ts", "repository": { "type": "git", "url": "https://github.com/ivsaez/npc-aspect.git" }, "scripts": { "test": "jest", "prebuild": "npm run test", "build": "microbundle", "prepublish": "npm run build", "tsc": "tsc", "watch": "tsc --watch" }, "keywords": [ "videogames", "npc", "aspect" ], "author": "Ivan Saez Zamora", "license": "MIT", "devDependencies": { "@babel/preset-env": "^7.16.11", "@types/jest": "^27.4.1", "@types/node": "^17.0.21", "babel-jest": "^27.5.1", "eslint": "^8.10.0", "eslint-config-prettier": "^8.4.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.5.1", "microbundle": "^0.14.2", "prettier": "^2.5.1", "ts-jest": "^27.1.3", "ts-node": "^10.5.0", "typescript": "^4.6.2" }, "lint-staged": { "*.js": [ "prettier --write", "eslint --fix", "git add" ], "*.ts": [ "prettier --write", "eslint --fix", "git add" ], "*.{json,md}": [ "prettier --write", "git add" ] }, "files": [ "dist", "package.json", "README.md" ], "dependencies": { "role-methods": "^1.0.2" } }