simple-rest-orm/package.json

43 lines
1.2 KiB
JSON

{
"name": "@bithero/simple-rest-orm",
"author": "mai-lapyst",
"license": "AGPL-3.0-or-later",
"description": "Simple ORM for REST APIs",
"version": "1.0.3",
"keywords": [
"front-end", "orm", "browser", "rest", "api"
],
"repository": {
"type": "git",
"url": "https://codeark.it/Bithero-Agency/simple-rest-orm.git"
},
"bugs": {
"url": "https://codeark.it/Bithero-Agency/simple-rest-orm/issues"
},
"homepage": "https://codeark.it/Bithero-Agency/simple-rest-orm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"coverage": "nyc -r text -e .ts -x \"tests/*\" npm run test",
"build": "tsc",
"watch": "tsc -w",
"prepublish": "tsc"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"ts-serializable": "^2.0.68"
},
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^18.0.1",
"jasmine": "^4.2.1",
"nyc": "^15.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}