@golemio/microclimate 1.2.10 → 1.2.11-dev.2274073903
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/microclimate",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11-dev.2274073903",
|
|
4
4
|
"description": "Golemio Microclimate Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
"build-minimal": "run-s 'build -- --sourceMap false --declaration false'",
|
|
10
10
|
"build-watch": "run-s 'build -- --watch --preserveWatchOutput'",
|
|
11
11
|
"migrate-db": "golemio migrate-db up --postgres",
|
|
12
|
-
"
|
|
13
|
-
"test": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r tsconfig-paths/register -r dotenv/config --file 'test/setup.ts' 'test/**/*.test.ts'",
|
|
12
|
+
"prepare-db": "golemio import-db-data --postgres",
|
|
13
|
+
"test:only": "cross-env NODE_ENV=test mocha --exit --check-leaks --timeout 120000 -r ts-node/register -r tsconfig-paths/register -r dotenv/config --file 'test/setup.ts' 'test/**/*.test.ts'",
|
|
14
|
+
"test": "run-s prepare-db test:only",
|
|
14
15
|
"test-debug": "run-s 'test -- --inspect-brk=9230'",
|
|
15
|
-
"
|
|
16
|
+
"coverage:only": "nyc --reporter=text --reporter=lcov npm run test:only -- -r source-map-support/register",
|
|
17
|
+
"code-coverage": "run-s prepare-db coverage:only",
|
|
16
18
|
"generate-docs": "typedoc --out docs/typedoc src",
|
|
17
19
|
"lint": "eslint \"{src,test}/**/*.ts\""
|
|
18
20
|
},
|