diff options
author | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-01-20 15:21:34 -0800 |
---|---|---|
committer | Nick Van Doorn <vandoorn.nick@gmail.com> | 2019-01-20 15:21:34 -0800 |
commit | 2e94d8dce0fb509afd8cdb795067d97ecc4c364f (patch) | |
tree | 00279cae424154d8f47254ec8ab2e924384efee7 /core/package.json | |
parent | fd3317e2bf2f65050583d9c072ee34eea3287d76 (diff) |
MONOREPO
Diffstat (limited to 'core/package.json')
-rw-r--r-- | core/package.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/core/package.json b/core/package.json new file mode 100644 index 0000000..08ad6f3 --- /dev/null +++ b/core/package.json @@ -0,0 +1,22 @@ +{ + "name": "@nvandoorn/naive-core", + "version": "1.3.2", + "description": "A naive NoSQL database", + "main": "dist/database.js", + "types": "dist/database.d.ts", + "scripts": { + "build": "tsc && typedoc --out docs src", + "test": "jest src" + }, + "author": "Nicholas Van Doorn", + "license": "MIT", + "devDependencies": { + "@types/jest": "^23.3.13", + "@types/node": "^10.12.18", + "jest": "^23.6.0", + "ts-jest": "^23.10.5", + "ts-node": "^7.0.1", + "typedoc": "^0.14.2", + "typescript": "^3.2.4" + } +} |