forked from sailshq/machinepack-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "machinepack-mysql",
"version": "4.0.0",
"description": "Structured Node.js bindings for MySQL.",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --recursive --timeout 10000",
"fasttest": "node ./node_modules/mocha/bin/mocha --recursive --timeout 10000",
"pretest": "npm run lint",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0",
"docker": "docker-compose run adapter bash"
},
"keywords": [
"mysql",
"driver",
"waterline",
"sails",
"machines",
"machinepack"
],
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"debug": "2.6.9",
"@sailshq/lodash": "^3.10.4",
"machine": "^15.0.0",
"mysql": "git+https://[email protected]/egoistIT/mysql.git#master",
"waterline-sql-builder": "^2.0.0"
},
"devDependencies": {
"eslint": "4.19.1",
"mocha": "3.0.2"
},
"machinepack": {
"friendlyName": "MySQL",
"machineDir": "lib/",
"machines": [
"get-connection",
"release-connection",
"send-native-query",
"parse-native-query-result",
"parse-native-query-error",
"begin-transaction",
"commit-transaction",
"rollback-transaction",
"compile-statement",
"create-manager",
"destroy-manager"
],
"implements": {
"connectable": "1.0",
"queryable": "1.0",
"transactional": "1.0"
}
},
"repository": {
"type": "git",
"url": "[email protected]:treelinehq/machinepack-mysql.git"
}
}