UNPKG

tabel

Version:

A simple orm for PostgreSQL which works with simple javascript objects and arrays

50 lines (49 loc) 1.6 kB
{ "name": "tabel", "version": "3.0.1", "repository": "https://github.com/fractaltech/tabel", "description": "A simple orm for PostgreSQL which works with simple javascript objects and arrays", "main": "lib/Orm.js", "homepage": "https://github.com/fractaltech/tabel", "scripts": { "prepublishOnly": "npm run build", "clean": "rm -rf lib/", "build": "npm run clean && babel src --out-dir lib/ && cp src/migration.stub lib/migration.stub", "test": "npm run test.kredis && npm run test.orm && npm run test.collisions 1000 100 && npm run test.migrator default && npm run test.migrator custom && npm run test.migrate.cli", "test.kredis": "babel-node test/kredis/main.js", "test.orm": "babel-node test/orm/main.js", "test.collisions": "babel-node test/collisions/main.js", "test.migrator": "babel-node test/migrator/main.js", "test.migrate.cli": "babel-node test/migrator/cli.js" }, "author": "Kapil Verma <kapv89@gmail.com>", "keywords": [ "object-relational-mapper", "orm", "postgresql", "postgres", "redis", "mysql" ], "license": "ISC", "dependencies": { "file-exists": "^2.0.0", "isusableobject": "^0.1.2", "knex": "^0.21.1", "lodash": "^4.17.11", "md5": "^2.2.1", "redisdsl": "^1.0.3", "uuid": "^2.0.3" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "^6.1.2", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-0": "^6.5.0", "eslint": "^2.13.1", "faker": "^3.1.0", "mysql": "^2.15.0", "pg": "^8.0.3", "rimraf": "^2.5.4" } }