-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "juttle-mysql-adapter",
"version": "0.6.1",
"description": "Juttle adapter for MySQL",
"keywords": [
"juttle",
"adapter",
"mysql"
],
"homepage": "https://github.com/juttle/juttle-mysql-adapter",
"bugs": "https://github.com/juttle/juttle-mysql-adapter/issues",
"license": "Apache-2.0",
"repository": "juttle/juttle-mysql-adapter",
"scripts": {
"test": "npm run unit && npm run lint",
"test-coverage": "istanbul cover node_modules/.bin/_mocha -- test/*.spec.js",
"unit": "mocha test/*.spec.js",
"hist": "mocha test/*.spec.js -g live -i",
"lint": "eslint **/*.js *.js",
"check-coverage": "istanbul check-coverage"
},
"dependencies": {
"juttle-sql-adapter-common": "^0.6.0",
"knex": "^0.9.0",
"mysql": "^2.10.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^1.10.0",
"eslint": "^1.10.3",
"istanbul": "^0.4.2",
"moment": "^2.12.0",
"mocha": "^2.3.4"
},
"juttleAdapterAPI": "^0.7.0",
"engines": {
"node": ">=4.2.0",
"npm": ">=2.14.7"
}
}