initial commit
[squeep-test-helper] / package.json
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..0994079
--- /dev/null
@@ -0,0 +1,33 @@
+{
+  "name": "@squeep/test-helper",
+  "version": "1.0.0",
+  "description": "Common modules and helpers for Squeep Framework Applications unit testing.",
+  "main": "index.js",
+  "scripts": {
+    "coverage": "nyc npm test",
+    "coverage-check": "nyc check-coverage",
+    "eslint": "eslint *.js lib",
+    "test": "mocha --recursive"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git.squeep.com/squeep-test-helper/"
+  },
+  "author": "Justin Wind <jwind-npm@squeep.com>",
+  "license": "ISC",
+  "pre-commit": [
+    "eslint",
+    "coverage",
+    "coverage-check"
+  ],
+  "dependencies": {
+    "eslint": "^8.22.0",
+    "eslint-plugin-node": "^11.1.0",
+    "eslint-plugin-security": "^1.5.0",
+    "eslint-plugin-sonarjs": "^0.15.0",
+    "mocha": "^10.0.0",
+    "nyc": "^15.1.0",
+    "pre-commit": "^1.2.2",
+    "sinon": "^14.0.0"
+  }
+}