-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 888 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 888 Bytes
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
{
"name": "filer-sql",
"version": "0.0.3",
"description": "Support for MySQL, MariaDB, SQLite or PostgreSQL Filer providers",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "https://github.com/filerjs/filer-sql.git"
},
"keywords": [
"filer",
"sql"
],
"author": "David Humphrey <david.humphrey@senecacollege.ca>",
"license": "MPL2.0",
"bugs": {
"url": "https://github.com/filerjs/filer-sql/issues"
},
"homepage": "https://github.com/filerjs/filer-sql",
"dependencies": {
"mysql": "^2.5.1",
"sequelize": "^2.0.0-rc1",
"sqlite3": "^3.0.2"
},
"optionalDependencies": {
"mariasql": "^0.1.21",
"pg": "^4.0.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.10.0",
"grunt-mocha-test": "^0.10.2"
}
}