-
Notifications
You must be signed in to change notification settings - Fork 36
/
bower.json
45 lines (45 loc) · 1.02 KB
/
bower.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
39
40
41
42
43
44
45
{
"name": "automapper-ts",
"version": "1.9.0",
"description": "A convention-based object-object mapper in JavaScript, written in TypeScript. Ported from the original C# AutoMapper library at https://github.com/AutoMapper/AutoMapper.",
"keywords": [
"automapper",
"convention-based",
"typescript",
"javascript",
"library"
],
"authors": [
{ "name": "Bert Loedeman", "email": "[email protected]", "homepage": "http://dotbert.loedeman.nl" }
],
"homepage": "https://github.com/loedeman/AutoMapper",
"license": "MIT",
"main": [
"dist/automapper.js"
],
"typescript": {
"definition": "dist/automapper.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/loedeman/AutoMapper.git"
},
"ignore": [
"node_modules",
"bower_components",
"test",
"tools",
"lib",
"src/ts",
"samples",
".settings",
".vscode",
"**/.*",
"*.md",
"AUTHORS.txt",
"GulpFile.js",
"gulp.config.js",
"*.json",
"automapper-*.d.ts"
]
}