-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 862 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
{
"name": "pgtest",
"version": "0.2.3",
"description": "A module that provides easy unit-testing for the popular node-postgres.",
"main": "lib/pgtest.js",
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/thepeak99/node-postgres-test.git"
},
"keywords": [
"postgres",
"postgresql",
"node",
"node-postgres",
"test"
],
"author": "Martin E. Zulliger",
"license": "MIT",
"bugs": {
"url": "https://github.com/thepeak99/node-postgres-test/issues"
},
"homepage": "https://github.com/thepeak99/node-postgres-test",
"dependencies": {
"assertion-error": "1.0.1",
"escape-string-regexp": "^1.0.5",
"lodash": "^4.17.11"
},
"devDependencies": {
"async": "^1.0.0",
"chai": "^2.3.0",
"mocha": "3.5.3"
}
}