Skip to content
This repository was archived by the owner on Jan 12, 2023. It is now read-only.

Commit

Permalink
start
Browse files Browse the repository at this point in the history
  • Loading branch information
JaneJeon committed Sep 3, 2019
1 parent f1f7c62 commit 001e763
Show file tree
Hide file tree
Showing 2 changed files with 4,833 additions and 0 deletions.
55 changes: 55 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"name": "objection-hashid",
"version": "0.1.0",
"description": "Obfuscate your Objection.js model ids using hashids!",
"main": "index.js",
"repository": "https://github.com/JaneJeon/objection-hashid",
"author": "Jane Jeon <[email protected]>",
"license": "MIT",
"keywords": [
"objection",
"objection.js",
"knex",
"knexjs",
"knex.js",
"orm",
"plugin",
"id",
"ids",
"hashids",
"hashid",
"hash",
"obfuscation",
"youtube",
"bitly",
"encode",
"decode",
"encrypt",
"decrypt"
],
"scripts": {
"test": "jest",
"test:watch": "yarn test --watch",
"coverage": "if is-ci; then cat ./coverage/lcov.info | coveralls; fi",
"lint": "standard"
},
"husky": {
"pre-commit": "standard --fix",
"pre-push": "yarn test"
},
"dependencies": {
"hashids": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"coveralls": "^3.0.6",
"husky": "^3.0.5",
"is-ci": "^2.0.0",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"knex": "^0.19.3",
"objection": "^1.6.9",
"sqlite3": "^4.1.0",
"standard": "^14.1.0"
}
}
Loading

0 comments on commit 001e763

Please sign in to comment.