forked from 1602/jugglingdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.44 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "jugglingdb",
"description": "Node.js ORM for every database: redis, mysql, mongodb, postgres, sqlite, ...",
"version": "2.0.0-rc8",
"author": "Anatoliy Chakkaev <[email protected]>",
"contributors": [
{
"name": "Anatoliy Chakkaev",
"email": "[email protected]"
},
{
"name": "Julien Guimont",
"email": "[email protected]"
},
{
"name": "Joseph Junker",
"email": "[email protected]"
},
{
"name": "Henri Bergius",
"email": "[email protected]"
},
{
"name": "redvulps",
"email": "[email protected]"
},
{
"name": "Felipe Sateler",
"email": "[email protected]"
},
{
"name": "Amir M. Mahmoudi",
"email": "[email protected]"
},
{
"name": "Justinas Stankevičius",
"email": "[email protected]"
},
{
"name": "Rick O'Toole",
"email": "[email protected]"
},
{
"name": "Nicholas Westlake",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/1602/jugglingdb"
},
"main": "main.js",
"scripts": {
"test": "mocha --bail --reporter spec --check-leaks test/",
"test-babel": "mocha --compilers js:babel-register --bail --reporter spec --check-leaks test/",
"prepublish": "make build",
"test-coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter landing --no-exit --check-leaks test/",
"test-ci-babel": "node_modules/mocha/bin/_mocha --compilers js:babel-register --reporter spec --check-leaks test/",
"test-ci-native": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"man": [
"./docs/man/jugglingdb.3",
"./docs/man/schema.3",
"./docs/man/model.3",
"./docs/man/hooks.3",
"./docs/man/validations.3",
"./docs/man/roadmap.3",
"./docs/man/changelog.3"
],
"engines": [
"node >= 0.6"
],
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.11.5",
"eslint": "^3.2.0",
"eslint-config-1602": "^1.2.0",
"expect": "^1.20.2",
"istanbul": "^0.4.4",
"jshint": "2.9.2",
"mocha": "2.5.3",
"should": "9.0.2"
},
"dependencies": {
"inflection": "=1.2.7",
"mocha": "^2.5.3",
"should": "^9.0.2",
"when": "3.7.3"
},
"license": "MIT",
"jshintConfig": {
"proto": true
}
}