forked from overlookmotel/sequelize-hierarchy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "sequelize-hierarchy",
"version": "0.5.8",
"description": "Nested hierarchies for Sequelize",
"main": "./lib/",
"author": {
"name": "Overlook Motel"
},
"repository": {
"type": "git",
"url": "https://github.com/overlookmotel/sequelize-hierarchy.git"
},
"bugs": {
"url": "https://github.com/overlookmotel/sequelize-hierarchy/issues"
},
"dependencies": {
"lodash": "^3.10.1",
"semver-select": "^1.1.0"
},
"peerDependencies": {
"sequelize": "2.0.0 - 3.x.x"
},
"devDependencies": {
"mocha": "^2.3.2",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"sequelize": "2.0.0 - 3.x.x",
"mysql": "~2.8.0",
"sqlite3": "^3.0.6",
"pg": "^4.2.0",
"pg-hstore": "^2.3.1",
"pg-native": "^1.8.0",
"tedious": "^1.7.0",
"jshint": "^2.8.0",
"istanbul": "^0.3.19",
"coveralls": "^2.11.4"
},
"keywords": [
"sequelize",
"sequelize-plugin",
"hierarchy",
"nested",
"tree"
],
"scripts": {
"test": "make all",
"cover": "make cover"
},
"engines": {
"node": ">=0.6.21"
},
"readmeFilename": "README.md",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/overlookmotel/sequelize-hierarchy/raw/master/License"
}
]
}