@xylabs/sdk-js 2.3.8 → 2.3.9

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 +7 -7
  2. package/package.json +46 -49
package/README.md CHANGED
@@ -12,12 +12,12 @@
12
12
 
13
13
  ## Table of Contents
14
14
 
15
- - [Description](#description)
16
- - [Install](#install)
17
- - [Scripts](#scripts)
18
- - [Maintainers](#maintainers)
19
- - [License](#license)
20
- - [Credits](#credits)
15
+ - [Description](#description)
16
+ - [Install](#install)
17
+ - [Scripts](#scripts)
18
+ - [Maintainers](#maintainers)
19
+ - [License](#license)
20
+ - [Credits](#credits)
21
21
 
22
22
  ## Description
23
23
 
@@ -59,7 +59,7 @@ $ yarn lint
59
59
 
60
60
  ## Maintainers
61
61
 
62
- - [Arie Trouw](https://github.com/arietrouw) (<https://arietrouw.com>)
62
+ - [Arie Trouw](https://github.com/arietrouw) (<https://arietrouw.com>)
63
63
 
64
64
  ## License
65
65
 
package/package.json CHANGED
@@ -1,75 +1,72 @@
1
1
  {
2
- "name": "@xylabs/sdk-js",
3
- "homepage": "https://xylabs.com",
4
- "bugs": {
5
- "url": "https://github.com/xylabs/sdk-js/issues",
6
- "email": "support@xylabs.com"
7
- },
8
- "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
9
2
  "author": {
3
+ "email": "support@xylabs.com",
10
4
  "name": "XY Labs Development Team",
11
- "url": "https://xylabs.com",
12
- "email": "support@xylabs.com"
5
+ "url": "https://xylabs.com"
13
6
  },
14
- "license": "LGPL-3.0",
15
- "private": false,
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/xylabs/sdk-js.git"
7
+ "bugs": {
8
+ "email": "support@xylabs.com",
9
+ "url": "https://github.com/xylabs/sdk-js/issues"
19
10
  },
20
- "publishConfig": {
21
- "access": "public"
11
+ "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
12
+ "devDependencies": {
13
+ "@types/bn.js": "^5.1.0",
14
+ "@types/jest": "^27",
15
+ "@types/mocha": "^9",
16
+ "@types/node": "^16",
17
+ "@xylabs/eslint-config": "2.1.4",
18
+ "@xylabs/ts-scripts": "^1.0.21",
19
+ "axios": "^0.24.0",
20
+ "bn.js": "^5.2.0",
21
+ "eslint": "^8",
22
+ "jest": "^27.3.1",
23
+ "npm-package-json-lint": "^5.4.2",
24
+ "npm-package-json-lint-config-default": "^3.0.0",
25
+ "prettier": "^2.4.1",
26
+ "rollbar": "^2.24.0",
27
+ "ts-jest": "^27.0.7",
28
+ "ts-node": "^10.4.0",
29
+ "typescript": "^4"
22
30
  },
31
+ "homepage": "https://xylabs.com",
23
32
  "keywords": [
24
33
  "xylabs",
25
34
  "utility",
26
35
  "typescript",
27
36
  "esm"
28
37
  ],
29
- "version": "2.3.8",
30
- "type": "module",
38
+ "license": "LGPL-3.0",
31
39
  "main": "dist/index.js",
32
40
  "module": "dist/index.js",
33
- "types": "dist/index.d.ts",
34
- "sideEffects": false,
41
+ "name": "@xylabs/sdk-js",
42
+ "optionalDependencies": {
43
+ "rollbar": "^2.24.0"
44
+ },
35
45
  "peerDependencies": {
36
46
  "@types/bn.js": "^5",
37
47
  "axios": "^0",
38
48
  "bn.js": "^5"
39
49
  },
40
- "optionalDependencies": {
41
- "rollbar": "^2.24.0"
50
+ "private": false,
51
+ "publishConfig": {
52
+ "access": "public"
53
+ },
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/xylabs/sdk-js.git"
57
+ },
58
+ "resolutions": {
59
+ "uuid": "^8"
42
60
  },
43
61
  "scripts": {
44
- "lint": "eslint .",
45
62
  "compile": "tsc -p tsconfig.build.json",
63
+ "fix": "eslint . --fix",
64
+ "lint": "eslint .",
46
65
  "lint-pkg": "npmPkgJsonLint .",
47
66
  "test": "jest"
48
67
  },
49
- "resolutions": {
50
- "uuid": "^8"
51
- },
52
- "devDependencies": {
53
- "@types/bn.js": "^5.1.0",
54
- "@types/jest": "^27",
55
- "@types/mocha": "^9",
56
- "@xylabs/eslint-config": "2.0.33",
57
- "@xylabs/ts-scripts": "^1.0.17",
58
- "axios": "^0.24.0",
59
- "bn.js": "^5.2.0",
60
- "eslint": "^8",
61
- "eslint-plugin-md": "^1.0.19",
62
- "jest": "^27.3.1",
63
- "markdown-eslint-parser": "^1.2.1",
64
- "npm-package-json-lint": "^5.4.2",
65
- "npm-package-json-lint-config-default": "^3.0.0",
66
- "prettier": "^2.4.1",
67
- "remark-cli": "^10.0.1",
68
- "remark-lint": "^9.1.0",
69
- "remark-preset-lint-markdown-style-guide": "^5.1.1",
70
- "rollbar": "^2.24.0",
71
- "ts-jest": "^27.0.7",
72
- "ts-node": "^10.4.0",
73
- "typescript": "^4"
74
- }
68
+ "sideEffects": false,
69
+ "type": "module",
70
+ "types": "dist/index.d.ts",
71
+ "version": "2.3.9"
75
72
  }