UNPKG

@parch-js/orm

Version:

ORM for parch providing record DSL

95 lines (94 loc) 2.42 kB
{ "name": "@parch-js/orm", "version": "0.0.4", "description": "ORM for parch providing record DSL", "main": "index.js", "scripts": { "build": "babel src -d lib", "cover": "nyc yarn test", "changelog": "conventional-changelog -s -p angular -i CHANGELOG.md", "docs": "yuidoc . -o docs", "lint": "eslint ./src ./test", "prepare-release": "curl -sL https://gist.githubusercontent.com/dylanfoster/35b06db9aaa9237da77eff4a8eec0a22/raw/83ec714ec64f7ec36c5004588aa259354fc87b51/prepare-release.sh | bash -s", "prepublish": "yarn build", "pretest": "yarn build", "test": "NO_DEPRECATION=parch NODE_ENV=test mocha --recursive --compilers js:babel-register --timeout 5000", "watch:build": "chokidar 'src/**' 'test/**/*.js' -c 'yarn build' --initial", "watch:cover": "chokidar 'src/**' 'test/**/*.js' -c 'yarn cover' --initial", "watch:test": "chokidar 'src/**' 'test/**/*.js' -c 'yarn test' --initial" }, "keywords": [ "parch", "orm", "sequelize" ], "repository": "parch-js/orm", "author": "Dylan Foster <dylan947@gmail.com>", "license": "MIT", "devDependencies": { "babel-cli": "^6.10.1", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-env": "^1.6.1", "babel-register": "^6.9.0", "chai": "^4.1.2", "chokidar-cli": "^1.2.0", "conventional-changelog-cli": "^1.2.0", "coveralls": "^3.0.0", "eslint": "^4.11.0", "eslint-config-unstandard": "^1.4.0", "istanbul": "^1.0.0-alpha.2", "mocha": "^4.0.1", "sinon": "^4.1.2", "sinon-chai": "^2.8.0", "sqlite3": "^3.1.4", "yuidoc-lucid-theme": "^0.1.2", "yuidocjs": "^0.10.2" }, "dependencies": { "inflect": "^0.4.0", "nyc": "^11.3.0", "restify-errors": "^5.0.0", "sequelize": "^4.22.6" }, "babel": { "presets": [ "env" ], "plugins": [ "babel-plugin-add-module-exports" ] }, "eslintConfig": { "extends": "unstandard", "parserOptions": { "sourceType": "module" }, "rules": { "max-len": [ 1, { "code": 100 } ], "new-cap": 0, "no-magic-numbers": [ 2, { "ignore": [ -1, 0, 1 ], "ignoreArrayIndexes": true } ] } }, "nyc": { "reporter": [ "text", "lcov", "html" ] } }