forked from epost/purescript-node-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 814 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": "purescript-node-postgres",
"version": "5.0.0",
"description": "PureScript bindings for the pg PostgreSQL library",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"postinstall": "spago install",
"build": "spago build",
"test": "spago test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epost/purescript-node-postgres.git"
},
"keywords": [
"postgres",
"database",
"sql"
],
"author": "Erik Post",
"license": "MIT",
"bugs": {
"url": "https://github.com/epost/purescript-node-postgres/issues"
},
"homepage": "https://github.com/epost/purescript-node-postgres#readme",
"dependencies": {
"pg": "^7.10.0"
},
"devDependencies": {
"purescript": "^0.13.8",
"spago": "^0.19.1"
}
}