Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 724c25d

Browse files
simartnsimonnagl
authored andcommitted
Rename package to jsog-typescript
1 parent 5976ef3 commit 724c25d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ build:
6464
when: on_success
6565
expire_in: 1 week
6666
paths:
67-
- jsog-ts-*.tgz
67+
- jsog-typescript-*.tgz
6868

6969
test:
7070
stage: test

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ deploy:
88
secure: EkoXfGTgycBZZf6J1YvW937PRnqxHJ78bwOYG1/sB6khhh6aHPDkLEAZWf+X5dnj4MmfUfNdd1UdZKqxhx+GBTdaqQsgYruNbxkfuA/UpiqGN59P5vWz15NFl9sXJPzBIUQR9Mh2fKmzCjvvn0sKQo/oENx8/5k28MU4pZNYHUI2US0mhKRwp7JF+zrVrnsbqGnmZtuLMWONTfrMUhM6tKhPWzAFKAjVLTNWYYyvD4etv2CBk4uCWXVwQMYrp13lXjpl6sLyWTQrUS/hopRcE9R001O044kPR1TmfLj98XkXEo+Uwin/3nnTL0z3OzswGX/UnOXLsTtqvY4QZeTBa0lmrJHYinXb7rSUIXePC+yZEKyU4kjQwMzNDqlhhmVJKQBNLEBXygKxCfPKT10WFK2Vk4y+p+drvD8OSuZqLJY3fDjjPeDTZ7DbaFIfA0140pyl8Ya1hpuJW2wddnH3V2mISObH+1zklyZNJj2+dptSohG4YcyjVCNKMNLxmtV6ApMXt/hIiJDELSs40lKw8H7mOq/gZjfMOxEJw14aYmmDBhmJS/+Q35gYb4Ztls/sj6ad6AkLcYx8kKG6gjf3wXS+nwX1c6eF4zKDiAReR4t52Hv9scj4zfEj+0tP2pXk6gv2ab1f08DOgz8Eo44Un6ncTUzl8TSV57YUtt8gFNY=
99
on:
1010
tags: true
11-
repo: e-mundo/jsog-ts
11+
repo: e-mundo/jsog-typescript

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It is able to instantiante typescript objects during deserialization.
88
### Installation
99

1010
```
11-
npm --save jsog-ts
11+
npm --save jsog-typescript
1212
```
1313

1414
Enable typescript `experimentalDecorator` and `emitDecoratorMetadata` compiler options.
@@ -28,7 +28,7 @@ Minimal tslint.json:
2828
Generate a new instance of the service. See Integration for integration to some popular frameworks.
2929

3030
```
31-
import { jsogService } from 'jsog-ts'
31+
import { jsogService } from 'jsog-typescript'
3232
3333
const jsog = new JsogService();
3434
```
@@ -59,7 +59,7 @@ Provide JsogService as an Angular 4 Service which can be injected into your Comp
5959

6060
```
6161
import { NgModule } from '@angular/core';
62-
import { JsogService } from 'jsog-ts';
62+
import { JsogService } from 'jsog-typescript';
6363
6464
@NgModule({
6565
providers: [
@@ -74,7 +74,7 @@ Register JsogService as an Angular Service
7474

7575
```
7676
import { module } from 'angular';
77-
import { JsogService } from 'jsog-ts';
77+
import { JsogService } from 'jsog-typescript';
7878
7979
module.service('JsogService', JsogService)
8080
```
@@ -95,4 +95,4 @@ This software is provided under the [MIT license](http://opensource.org/licenses
9595
This software uses code and ideas from:
9696

9797
- [JSOG - JavaScript Object Graph](https://github.com/jsog/jsog)
98-
- [json-typescript-mapper](https://github.com/jf3096/json-typescript-mapper)
98+
- [json-typescript-mapper](https://github.com/jf3096/json-typescript-mapper)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "jsog-ts",
2+
"name": "jsog-typescript",
33
"version": "1.0.0-0",
44
"description": "JavaScript Object Graphs with Typescript",
55
"main": "./dist/index.js",
@@ -16,7 +16,7 @@
1616
},
1717
"repository": {
1818
"type": "git",
19-
"url": "https://github.com/e-mundo/jsog-ts.git"
19+
"url": "https://github.com/e-mundo/jsog-typescript.git"
2020
},
2121
"keywords": [
2222
"typescript",

0 commit comments

Comments
 (0)