-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "krypton-orm",
"version": "0.0.16",
"description": "Krypton is a full featured Javascript ORM for SQL Databases",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test istanbul cover _mocha -- --slow 10 --timeout 5000 --reporter spec --recursive tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgarza/krypton.git"
},
"keywords": [
"knex",
"sql",
"postgres",
"mysql",
"mariadb",
"orm",
"neon",
"neonode"
],
"author": "Sergio de la Garza <sergio@delagarza.io> (https://github.com/sgarza)",
"contributors": [
"Eduardo Lavaque <me@greduan.com> (http://greduan.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sgarza/krypton/issues"
},
"homepage": "https://github.com/sgarza/krypton#readme",
"dependencies": {
"async": "^1.5.0",
"bluebird": "^3.3.3",
"checkit": "^0.6.0",
"lodash": "^4.3.0",
"neon": "^2.0.0"
},
"devDependencies": {
"chai": "^3.3.0",
"codeclimate-test-reporter": "^0.3.1",
"istanbul": "0.4.2",
"knex": "^0.9.0",
"mocha": "^2.3.3",
"mysql": "^2.10.0",
"pg": "^4.4.3"
}
}