@izara_project/izara-core-generate-service-code 1.0.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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # izara-izara-core-generate-service-code
2
+
3
+ # update version
4
+ - commit code first
5
+ npm version patch || npm version minor || npm version major
6
+
7
+ # can also push to repo ..
8
+ git push
9
+ # make sure commits look correct
10
+
11
+ # push to npm
12
+ npm publish
13
+
14
+ # update project that uses this package
15
+ npm update @izara_project/izara-core-generate-service-code
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@izara_project/izara-core-generate-service-code",
3
+ "version": "1.0.1",
4
+ "description": "Code for locally generating per service files",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "jest"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+ssh://git@bitbucket.org/izara-core-support-services/izara-core-support-services-generate-service-code.git"
12
+ },
13
+ "author": "Sven Mason <thebarbariansven@gmail.com>",
14
+ "license": "AGPL-3.0-or-later",
15
+ "homepage": "https://bitbucket.org/izara-core-support-services/izara-core-support-services-generate-service-code#readme",
16
+ "devDependencies": {
17
+ "jest": "^23.6.0"
18
+ },
19
+ "jest": {
20
+ "testEnvironment": "node"
21
+ },
22
+ "dependencies": {
23
+ "@izara_project/izara-core-library-core": "^1.0.6",
24
+ "@izara_project/izara-core-library-external-request": "^1.0.3",
25
+ "@izara_project/izara-middleware": "^1.0.52",
26
+ "@izara_project/izara-property-nodes": "^1.0.11",
27
+ "@izara_project/izara-shared": "^1.0.52",
28
+ "i": "^0.3.6",
29
+ "npm": "^7.21.0",
30
+ "object-hash": "^2.2.0"
31
+ }
32
+ }