ts-gems 3.5.0 → 3.5.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 +32 -0
- package/package.json +2 -3
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# ts-gems
|
|
2
|
+
|
|
3
|
+
[![NPM Version][npm-image]][npm-url]
|
|
4
|
+
[![NPM Downloads][downloads-image]][downloads-url]
|
|
5
|
+
[![CI Tests][ci-test-image]][ci-test-url]
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
$ npm install ts-gems --save
|
|
11
|
+
```
|
|
12
|
+
## Node Compatibility
|
|
13
|
+
- node >= 16.x
|
|
14
|
+
## License
|
|
15
|
+
ts-gems is available under [MIT](LICENSE) license.
|
|
16
|
+
|
|
17
|
+
[npm-image]: https://img.shields.io/npm/v/ts-gems
|
|
18
|
+
[npm-url]: https://npmjs.org/package/ts-gems
|
|
19
|
+
[ci-test-image]: https://github.com/panates/ts-gems/actions/workflows/test.yml/badge.svg
|
|
20
|
+
[ci-test-url]: https://github.com/panates/ts-gems/actions/workflows/test.yml
|
|
21
|
+
[coveralls-image]: https://img.shields.io/coveralls/panates/ts-gems/master.svg
|
|
22
|
+
[coveralls-url]: https://coveralls.io/r/panates/ts-gems
|
|
23
|
+
[downloads-image]: https://img.shields.io/npm/dm/ts-gems.svg
|
|
24
|
+
[downloads-url]: https://npmjs.org/package/ts-gems
|
|
25
|
+
[gitter-image]: https://badges.gitter.im/panates/ts-gems.svg
|
|
26
|
+
[gitter-url]: https://gitter.im/panates/ts-gems?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
|
27
|
+
[dependencies-image]: https://david-dm.org/panates/ts-gems/status.svg
|
|
28
|
+
[dependencies-url]:https://david-dm.org/panates/ts-gems
|
|
29
|
+
[devdependencies-image]: https://david-dm.org/panates/ts-gems/dev-status.svg
|
|
30
|
+
[devdependencies-url]:https://david-dm.org/panates/ts-gems?type=dev
|
|
31
|
+
[quality-image]: http://npm.packagequality.com/shield/ts-gems.png
|
|
32
|
+
[quality-url]: http://packagequality.com/#?package=ts-gems
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-gems",
|
|
3
3
|
"description": "Valuable typing extensions for TypeScript",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"module": "./lib/index.mjs",
|
|
7
7
|
"main": "./lib/index.cjs",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"format": "prettier . --write --log-level=warn",
|
|
23
23
|
"test:common": "jest --clearCache && jest --config=./jest.config.mjs",
|
|
24
24
|
"test:nostrict": "jest --clearCache && jest --config=./jest.nostrict.config.mjs",
|
|
25
|
-
"test": "npm run test:common && npm run test:nostrict"
|
|
26
|
-
"prepare": "husky"
|
|
25
|
+
"test": "npm run test:common && npm run test:nostrict"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
28
|
"@panates/eslint-config": "^1.0.13",
|