forked from shippableSamples/sample_node_mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 694 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 694 Bytes
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
{
"name": "sample_node_mysql",
"version": "0.0.0",
"description": "Testing MySql service",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/_mocha -R xunit-file test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:Shippable/sample_node_mysql.git"
},
"author": "Tim Lebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shippable/sample_node_mysql/issues"
},
"homepage": "https://github.com/Shippable/sample_node_mysql",
"dependencies": {
"knex": "^0.5.14",
"mysql": "^2.2.0"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.2.9",
"mocha": "^1.18.2",
"xunit-file": "0.0.5"
}
}