summaryrefslogtreecommitdiff
path: root/lib/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'lib/package.json')
-rw-r--r--lib/package.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/package.json b/lib/package.json
new file mode 100644
index 0000000..0e2204e
--- /dev/null
+++ b/lib/package.json
@@ -0,0 +1,26 @@
+{
+ "name": "naive-lib",
+ "version": "1.0.0",
+ "description": "Small library for the naive NoSQL db",
+ "scripts": {
+ "build": "tsc && typedoc --out docs src",
+ "test": "jest",
+ "test:watch": "jest src --watch",
+ "start": "ts-node bin/index.ts"
+ },
+ "bin": {
+ "naive-server": "node dist/server/bin/index.js"
+ },
+ "author": "Nicholas Van Doorn",
+ "license": "MIT",
+ "devDependencies": {
+ "jest": "^23.6.0",
+ "ts-jest": "^23.10.5",
+ "ts-node": "^7.0.1",
+ "typedoc": "^0.14.2",
+ "typescript": "^3.2.4"
+ },
+ "dependencies": {
+ "@types/jest": "^24.0.9"
+ }
+}