UNPKG

sql-toolkit

Version:

A SQL Toolkit based on pure business objects passed to and from stateful data access objects

52 lines (51 loc) 1.32 kB
{ "name": "sql-toolkit", "version": "0.3.2", "main": "src/index.js", "engines": { "node": ">=6" }, "scripts": { "test": "npm run test:unit && npm run test:format", "test:unit": "jest", "test:unit:watch": "jest --watch", "test:unit:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose", "test:format": "prettier -l \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"", "format": "prettier --write \"**/*.{js,json,md}\" \"!src/**/*.spec.js\" \"!coverage/**/*\"", "pub": "npm run test && np" }, "dependencies": { "camelcase": "^5.0.0", "uter": "0.0.1" }, "devDependencies": { "jest": "^23.6.0", "np": "^3.1.0", "prettier": "^1.9.2" }, "jest": { "coverageDirectory": "./coverage/", "collectCoverage": true, "testEnvironment": "node" }, "prettier": { "printWidth": 80, "tabWidth": 2, "singleQuote": true, "trailingComma": "none" }, "author": "Craig Martin", "description": "A SQL Toolkit based on pure business objects passed to and from stateful data access objects", "license": "MIT", "keywords": [ "nodejs", "sql", "postgres", "postgresql", "orm", "object-relational mapping", "toolkit", "business objects", "data access objects" ] }