-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.56 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
{
"name": "adelia",
"version": "1.2.0",
"description": "Antarctic-friendly ORM for Node",
"main": "./lib/index.js",
"scripts": {
"lint": "eslint lib test",
"mysql": "mysql -u root -p < schemas/mysql/adelia_test.sql",
"test": "MYSQL_HOST=localhost MYSQL_PORT=8889 MYSQL_USER=root MYSQL_PASSWORD=root MYSQL_DB=adelia_test mocha --recursive 'test/**/*.test.js'",
"test-sqlite": "DB=sqlite SQLITE_DB=./db/sqlite/adelia_test.sqlite MYSQL_HOST=localhost MYSQL_PORT=8889 MYSQL_USER=root MYSQL_PASSWORD=root MYSQL_DB=adelia_test mocha --recursive 'test/**/*.test.js'",
"test-ci": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive 'test/**/*.test.js' && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Claudio Procida <claudio.procida@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.20.0",
"bluebird": "^3.4.6",
"lodash": "^4.17.2",
"mysql": "^2.12.0",
"sprintf-js": "^1.0.3",
"sqlite": "^2.2.4"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emeraldion/adelia.git"
},
"keywords": [
"orm",
"node",
"activerecord"
],
"bugs": {
"url": "https://github.com/emeraldion/adelia/issues"
},
"homepage": "https://github.com/emeraldion/adelia#readme"
}