ivanovna.orm/package.json
2021-09-29 17:11:49 +03:00

59 lines
1.3 KiB
JSON

{
"name": "ivna-orm",
"version": "1.0.0",
"description": "Mini ORM for convenience",
"main": "src/index.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "node --no-warnings node_modules/.bin/jest --runInBand --forceExit",
"prepare": "npm run lint && npm test && npm run build",
"lint": "xo --space=4",
"build": "tsc -b -v"
},
"repository": {
"type": "git",
"url": "https://git.archive.systems/ivanovna/ivanovna.orm.git"
},
"keywords": [
"ivanovna",
"ivna",
"orm"
],
"author": "Nikita Orlov",
"license": "Apache-2.0",
"devDependencies": {
"@jest/test-sequencer": "^27.2.3",
"@types/bson": "^4.2.0",
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/node": "^14.17.19",
"@types/rfdc": "^1.2.0",
"chai": "^4.3.4",
"jasmine": "^3.9.0",
"jasmine-fail-fast": "^2.0.1",
"jest": "^27.2.3",
"jest-teamcity": "^1.10.0",
"nanoid": "^3.1.28",
"prettier": "^2.4.1",
"rfdc": "^1.3.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"xo": "^0.44.0"
},
"dependencies": {
"mongodb": "^4.1.2",
"mongodb-client-encryption": "^1.2.7"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 110,
"semi": false,
"singleQuote": true,
"tabWidth": 4
}
}