-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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": "anytv-node-mysql",
"version": "1.0.0",
"description": "Our version of mysql that makes connecting to mysql simpler and more elegant. Especially made for our awesome expressjs boilerplate.",
"main": "index.js",
"dependencies": {
"mysql": "^2.11.1",
"squel": "^5.11.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"coveralls": "^2.11.4",
"esdoc": "^0.4.3",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"test": "make test",
"test-dev": "make test mocha_extra_options='--watch'",
"coverage": "export NODE_ENV=test && istanbul cover _mocha -- --recursive -R spec -t 5000 -s 100",
"docs": "esdoc -c esdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/anyTV/anytv-node-mysql.git"
},
"keywords": [
"mysql"
],
"author": "anyTV",
"license": "ISC",
"bugs": {
"url": "https://github.com/anyTV/anytv-node-mysql/issues"
},
"homepage": "https://github.com/anyTV/anytv-node-mysql"
}