-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 961 Bytes
/
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": "sync-mysql",
"version": "3.0.1",
"main": "lib/index.js",
"description": "Make synchronous queries to a mysql database",
"keywords": [],
"files": [
"lib/"
],
"dependencies": {
"babel-runtime": "^6.18.0",
"concat-stream": "^1.6.0",
"sync-rpc": "^1.1.1",
"then-mysql": "^1.1.1"
},
"devDependencies": {
"babel-cli": "*",
"babel-jest": "*",
"babel-preset-forbeslindesay": "*",
"eslint": "*",
"eslint-config-forbeslindesay": "*",
"jest": "*"
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"lint": "eslint src",
"test": "jest ./src/** --coverage && npm run lint",
"watch": "jest ./src/** --coverage --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ForbesLindesay/sync-mysql.git"
},
"author": {
"name": "Forbes Lindesay",
"url": "http://github.com/ForbesLindesay"
},
"license": "MIT"
}