@futdevpro/nts-dynamo 1.6.71 → 1.7.1
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/nodemon.json +12 -5
- package/package.json +7 -5
package/nodemon.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
|
|
2
|
+
"exec": "npm run build-tgz",
|
|
3
|
+
"restartable": "rs",
|
|
4
|
+
"ext": "ts,json,tgz",
|
|
5
|
+
"watch": [
|
|
6
|
+
"./src",
|
|
7
|
+
"../npm-tgz-collection/dynamo-fsm"
|
|
8
|
+
],
|
|
9
|
+
"ignore": [
|
|
10
|
+
"./node_modules",
|
|
11
|
+
"./lib"
|
|
12
|
+
]
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@futdevpro/nts-dynamo",
|
|
3
|
-
"version": "01.
|
|
3
|
+
"version": "01.07.01",
|
|
4
4
|
"description": "Dynamic NodeTS (NodeJS-Typescript), MongoDB Backend System Framework by Future Development Program Ltd.",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
6
|
+
"prep": "npm i rimraf nodemon -g",
|
|
7
|
+
|
|
8
|
+
"start": "npm run prep && nodemon",
|
|
7
9
|
|
|
8
10
|
"deploy": "npm run build",
|
|
9
11
|
"build": "npm run build-simple && jasmine && npm publish",
|
|
@@ -11,10 +13,10 @@
|
|
|
11
13
|
|
|
12
14
|
"build-base": "npm i && rimraf ./lib && npx tsc",
|
|
13
15
|
"build-simple": "npm run build-base",
|
|
14
|
-
"build-clean": "
|
|
16
|
+
"build-clean": "npm run clean && npm run build-base",
|
|
17
|
+
"clean": "npm run prep && rimraf ./lib && rimraf package-lock.json && rimraf ./node_modules",
|
|
15
18
|
|
|
16
19
|
"test": "npm run build-simple && jasmine",
|
|
17
|
-
"test-live": "npm i && title Dynamo NTS Testing && nodemon --exec \"npm test\"",
|
|
18
20
|
"test-build": "npm run build-clean && jasmine"
|
|
19
21
|
},
|
|
20
22
|
"main": "./lib/index.js",
|
|
@@ -196,7 +198,7 @@
|
|
|
196
198
|
},
|
|
197
199
|
"homepage": "https:/futdevpro.hu/projects/dynamo",
|
|
198
200
|
"peerDependencies": {
|
|
199
|
-
"@futdevpro/fsm-dynamo": "^1.
|
|
201
|
+
"@futdevpro/fsm-dynamo": "^1.7.1",
|
|
200
202
|
|
|
201
203
|
"@types/express": "^4.17.17",
|
|
202
204
|
"@types/geoip-lite": "^1.4.1",
|