forked from shippableSamples/sample_node_postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 716 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 716 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
30
{
"name": "sample_node_postgres",
"version": "0.0.0",
"description": "Testing PostgreSQL service",
"main": "index.js",
"scripts": {
"test": "mocha --ui=bdd --reporter=spec test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:Shippable/sample_node_postgres.git"
},
"author": "Tim Lebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shippable/sample_node_postgres/issues"
},
"homepage": "https://github.com/tmlbl/sample_node_postgres",
"dependencies": {
"knex": "^0.5.14",
"pg": "^3.1.0",
"lodash": "^3.0"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.2.9",
"mocha": "^1.18.2",
"xunit-file": "0.0.5"
}
}