-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "nodejs-mysql",
"version": "0.1.3",
"description": "The wrapper of Node.js MySQL driver with Promise enabled.",
"main": "index.js",
"scripts": {
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run test-unit",
"test-unit": "cross-env NODE_ENV=test mocha ./test/*.spec.js",
"cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"mysql",
"promise"
],
"author": "Alsey ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsey/nodejs-mysql/issues"
},
"homepage": "https://github.com/alsey/nodejs-mysql#readme",
"dependencies": {
"bluebird": "^3.4.6",
"mysql": "^2.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/alsey/nodejs-mysql.git"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"cross-env": "^3.1.3",
"eslint": "^3.10.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-mocha": "^3.0.1",
"istanbul": "^0.4.5",
"lodash": "^4.17.2",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0"
}
}