-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "jugglingdb-mysql",
"version": "0.2.3",
"description": "MySQL adapter for JugglingDB",
"main": "index.js",
"scripts": {
"create-database": "mysql -u root -e 'create database myapp_test;'",
"test": "mocha --bail --check-leaks test/",
"lint": "eslint lib/ test/",
"test-coverage": "istanbul cover node_modules/.bin/_mocha -- --reporter landing --check-leaks test/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"dependencies": {
"jugglingdb": "https://github.com/1602/jugglingdb/archive/master.tar.gz",
"mysql": "^2.11.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"coffee-script": "latest",
"eslint": "^3.2.2",
"eslint-config-1602": "^1.2.0",
"expect": "^1.20.2",
"istanbul": "^0.4.4",
"mocha": "^2.4.3",
"semicov": "~0.1.1-2",
"should": "~3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jugglingdb/mysql-adapter.git"
},
"author": "Anatoliy Chakkaev <[email protected]>",
"maintainers": [
{
"name": "dgsan",
"url": "https://github.com/dgsan"
},
{
"name": "Anatoliy Chakkaev",
"url": "https://github.com/1602"
}
],
"license": "MIT"
}