forked from TylerGarlick/dto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 812 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
{
"name": "dto",
"version": "0.0.1",
"description": "DTO (Data Transfer Object) framework for JSON",
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://TylerGarlick@github.com/TylerGarlick/dto.git"
},
"keywords": [
"DTO",
"JSON",
"transformations"
],
"author": "Tyler Garlick <tjgarlick@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TylerGarlick/dto/issues"
},
"homepage": "https://github.com/TylerGarlick/dto#readme",
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.2.5"
},
"dependencies": {
"enjoi": "^1.0.0",
"hoek": "^2.14.0",
"joi": "^6.6.1",
"json-ptr": "^0.2.0",
"lazy.js": "^0.4.0"
},
"engines": {
"node": "^3.0.0"
}
}