-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "sails-mysql",
"version": "3.0.1",
"description": "MySQL adapter for Sails.js",
"main": "lib/adapter.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha test/adapter/unit --timeout 10000 --recursive && node test/adapter/integration/runner",
"fasttest": "node ./node_modules/mocha/bin/mocha test/adapter/unit --timeout 10000 --recursive && node test/adapter/integration/runner",
"pretest": "nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/'",
"docker": "docker-compose run adapter bash",
"benchmark": "node ./node_modules/mocha/bin/mocha test/benchmarks --recursive"
},
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-mysql.git"
},
"keywords": [
"mysql",
"orm",
"waterline",
"sails"
],
"author": "Mike McNeil",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"machine": "^15.0.0-21",
"machinepack-mysql": "^5.0.0",
"waterline-utils": "^1.3.10"
},
"devDependencies": {
"benchmark": "2.1.1",
"eslint": "4.11.0",
"mocha": "3.0.2",
"waterline-adapter-tests": "^1.0.0-6"
},
"waterlineAdapter": {
"waterlineVersion": "^0.13.0",
"interfaces": [
"semantic",
"queryable",
"migratable",
"associations",
"sql"
],
"features": [
"crossAdapter",
"unique",
"autoIncrement.sequential"
]
}
}