@izara_project/izara-shared-search-and-sort 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.
- package/README.md +16 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# izara-shared-search-and-sort
|
|
2
|
+
Shared Libraries frontend/backend for Search and Sort stack
|
|
3
|
+
|
|
4
|
+
# update version
|
|
5
|
+
- commit code first
|
|
6
|
+
npm version patch || npm version minor || npm version major
|
|
7
|
+
|
|
8
|
+
# can also push to repo ..
|
|
9
|
+
git push
|
|
10
|
+
# make sure commits look correct
|
|
11
|
+
|
|
12
|
+
# push to npm
|
|
13
|
+
npm publish
|
|
14
|
+
|
|
15
|
+
# update project that uses this package
|
|
16
|
+
npm update @izara_project/izara-shared-search-and-sort
|
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@izara_project/izara-shared-search-and-sort",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Shared Libraries frontend/backend for Search and Sort stack",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "jest"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+ssh://git@bitbucket.org/izara-core-libraries/izara-core-library-shared-search-and-sort.git"
|
|
12
|
+
},
|
|
13
|
+
"author": "Sven Mason <thebarbariansven@gmail.com>",
|
|
14
|
+
"license": "AGPL-3.0-or-later",
|
|
15
|
+
"homepage": "https://bitbucket.org/izara-core-libraries/izara-core-library-shared-search-and-sort#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.13",
|
|
24
|
+
"@izara_project/izara-core-library-external-request": "^1.0.13",
|
|
25
|
+
"@izara_project/izara-shared": "^1.0.109",
|
|
26
|
+
"object-hash": "^3.0.0"
|
|
27
|
+
}
|
|
28
|
+
}
|