8000 update README.md · hubcarl/json-typescript-mapper@ead315e · GitHub
[go: up one dir, main page]

Skip to content

Commit ead315e

Browse files
author
艾伦
committed
update README.md
1 parent 8578529 commit ead315e

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ node_modules
55

66
#ide settings
77
.idea
8+
.log
89

910
#source map
1011
*.map

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ const person = deserialize(Person, json);
120120
```
121121
122122
## Test Report
123+
The test case will be covered in the next push. This caused by inconsistent return type.
123124
![alt tag](/git-img/Test Results — spec_index.ts.png)
124125
125126
## Roadmap:

package.json

Lines changed: 28 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,34 @@
11
{
2-
"name": "index",
3-
"private": true,
4-
"version": "0.0.0",
2+
"name": "json-typescript-mapper",
3+
"version": "0.0.1",
54
"dependencies": {
6-
"chai": "~1.8.0",
7-
"mocha": "2.0.1",
85
"reflect-metadata": "^0.1.3"
96
},
7+
"devDependencies": {
8+
"chai": "~1.8.0",
9+
"mocha": "2.0.1"
10+
},
1011
"scripts": {
1112
"test": "mocha ./spec/index.js"
12-
}
13-
}
13+
},
14+
"description": "For single page application, data sources are obtained from API server. Instead of directly using api data, we \r definitely require an adapter layer to transform data as needed. Furthermore, \r the adapter inverse the the data dependency from API server(API Server is considered uncontrollable and \r highly unreliable as data structure may be edit by backend coder for some specific purposes)to our adapter \r which becomes reliable. Thus, this library is created as the adapter make use of es7 reflect decorator.",
15+
"main": "index.js",
16+
"repository": {
17+
"type": "git",
18+
"url": "git+https://github.com/jf3096/json-typescript-mapper.git"
19+
},
20+
"keywords": [
21+
"json-mapper",
22+
"typescript-json",
23+
"json-adapter",
24+
"json-transformer",
25+
"api-mapper",
26+
"api-adapter"
27+
],
28+
"author": "Ailun She",
29+
"license": "ISC",
30+
"bugs": {
31+
"url": "https://github.com/jf3096/json-typescript-mapper/issues"
32+
},
33+
"homepage": "https://github.com/jf3096/json-typescript-mapper#readme"
34+
}

0 commit comments

Comments
 (0)
0