npc-relations
Version:
Library with classes to represent simple relations between NPCs.
68 lines (67 loc) • 1.45 kB
JSON
{
"name": "npc-relations",
"version": "1.0.4",
"description": "Library with classes to represent simple relations between NPCs.",
"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-relations.git"
},
"scripts": {
"test": "jest",
"prebuild": "npm test",
"build": "microbundle",
"prepublish": "npm run build",
"tsc": "tsc",
"watch": "tsc --watch"
},
"keywords": [
"videogames",
"npc",
"relations"
],
"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.5.5"
},
"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": {
"limited-int": "^1.0.3"
}
}