forked from adonisjs/lucid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "adonis-lucid",
"version": "2.0.5",
"description": "Lucid is a sql ORM for adonis framework",
"main": "index.js",
"scripts": {
"test": "npm run standard && node --harmony_proxies node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec test/implementation test/unit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"coverage": "node --harmony_proxies node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha test/implementation test/unit --bail",
"standard": "standard src/**/*.js providers/*.js"
},
"author": "adonisjs",
"license": "MIT",
"devDependencies": {
"adonis-fold": "^3.0.0",
"chai": "^3.2.0",
"co": "^4.6.0",
"coveralls": "^2.11.4",
"cz-conventional-changelog": "^1.1.5",
"fs-extra": "^0.26.3",
"istanbul": "^0.3.20",
"loadtest": "^1.2.14",
"mocha": "^2.3.0",
"mocha-lcov-reporter": "0.0.2",
"mysql": "^2.9.0",
"pg": "^4.4.3",
"sqlite3": "^3.1.1",
"standard": "^5.4.1"
},
"peerDependencies": {
"adonis-fold": "^3.0.0"
},
"dependencies": {
"auto-loader": "git+https://github.com/thetutlage/node-auto-loader.git",
"cat-log": "^1.0.0",
"change-case": "^2.3.0",
"harmony-reflect": "^1.4.2",
"i": "^0.3.3",
"knex": "^0.8.6",
"lodash": "^3.10.1",
"q": "^1.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-lucid.git"
},
"keywords": [
"adonisjs",
"adonis",
"sql-orm",
"orm",
"sql"
],
"bugs": {
"url": "https://github.com/adonisjs/adonis-lucid/issues"
},
"homepage": "https://github.com/adonisjs/adonis-lucid#readme"
}