forked from jf3096/json-typescript-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "json-typescript-mapper",
"version": "1.1.2",
"typescript": {
"definition": "index.d.ts"
},
"dependencies": {
"reflect-metadata": "^0.1.3"
},
"devDependencies": {
"chai": "~1.8.0",
"mocha": "2.0.1"
},
"scripts": {
"test": "mocha ./spec/*.js",
"typings:generate": "tsc --declaration"
},
"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.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jf3096/json-typescript-mapper.git"
},
"keywords": [
"json-mapper",
"typescript-json",
"json-adapter",
"json-transformer",
"api-mapper",
"api-adapter"
],
"author": "Ailun She",
"license": "ISC",
"bugs": {
"url": "https://github.com/jf3096/json-typescript-mapper/issues"
},
"homepage": "https://github.com/jf3096/json-typescript-mapper#readme"
}