-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "juttle-sql-adapter-common",
"version": "0.6.0",
"description": "Code shared by Juttle adapters for SQL databases",
"keywords": [
"juttle",
"adapter",
"sql"
],
"homepage": "/~https://github.com/juttle/juttle-sql-adapter-common",
"bugs": "/~https://github.com/juttle/juttle-sql-adapter-common/issues",
"license": "Apache-2.0",
"repository": "juttle/juttle-sql-adapter-common",
"scripts": {
"shrinkwrap": "npm-shrinkwrap",
"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": {
"underscore": "^1.8.3",
"bluebird": "^3.0.5"
},
"devDependencies": {
"chai": "^1.10.0",
"eslint": "^1.10.3",
"istanbul": "^0.4.2",
"knex": "^0.9.0",
"mocha": "^2.3.4",
"moment": "^2.12.0",
"sqlite3": "^3.1.1"
},
"juttleAdapterAPI": "^0.7.0",
"engines": {
"node": ">=4.2.0",
"npm": ">=2.14.7"
}
}