-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
39
40
{
"name": "ts-simple-automapper",
"version": "1.0.3",
"description": "A simple AutoMapper implementation using property decorators.",
"main": "dist/index.js",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"test": "jasmine-ts \"./tsconfig.spec.json\" --config=\"./test/jasmine.json\"",
"tsc": "node_modules/.bin/tsc -d --project \"./tsconfig.build.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/IRCraziestTaxi/ts-simple-automapper.git"
},
"keywords": [
"automapper"
],
"author": "IRCraziestTaxi",
"license": "MIT",
"bugs": {
"url": "https://github.com/IRCraziestTaxi/ts-simple-automapper/issues"
},
"homepage": "https://github.com/IRCraziestTaxi/ts-simple-automapper#readme",
"devDependencies": {
"@types/jasmine": "3.6.9",
"jasmine": "3.7.0",
"jasmine-ts": "^0.3.0",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"typescript": "4.2.3"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}