-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 988 Bytes
/
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
41
{
"name": "@sameke/object-map-decorators",
"version": "1.0.2",
"description": "allows creating simple object maps using decorators",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc -p tsconfig.dist.json",
"build": "npm run tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sameke/object-map-decorators.git"
},
"author": "weagle08",
"license": "MIT",
"bugs": {
"url": "https://github.com/sameke/object-map-decorators/issues"
},
"homepage": "https://github.com/sameke/object-map-decorators#readme",
"keywords": [
"automapper",
"object-mapper",
"object-map"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {}
}