-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 925 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
{
"name": "friendly",
"version": "0.0.20",
"description": "A no-frills ORM that wraps your data and helps you compose objects. Define relationships between models, expand and collapse their properties, build streams and link data from multiple sources.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/zackiles/friendly"
},
"keywords": [
"orm",
"object",
"releationship",
"mapping",
"streams",
"data"
],
"author": "Zachary Iles <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zackiles/friendly/issues"
},
"homepage": "https://github.com/zackiles/friendly",
"dependencies": {
"bluebird": "~2.9.34",
"dot-object": "~1.1.0",
"dotject": "~0.6.6",
"lodash": "~3.10.1"
},
"devDependencies": {
"mocha": "~2.3.2",
"should": "~7.1.0"
}
}