-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
42
43
{
"name": "meteor-pg",
"version": "1.0.9",
"description": "This module makes live PostgreSQL select queries work with the Meteor publish/subscribe mechanism.",
"main": "dist/mpg-es6.js",
"dependencies": {
"babel-runtime": "^6.23.0",
"pg-promise": "^6.2.1",
"pg-query-observer": "^1.0.5",
"pg-table-observer": "^1.0.7"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1"
},
"scripts": {
"build": "babel src -d dist --source-maps inline",
"build-watch": "babel --watch src -d dist --source-maps inline",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Richie765/meteor-pg.git"
},
"keywords": [
"meteor",
"postgresql",
"psql",
"pg",
"meteor-pg",
"pg-live-select",
"reactive"
],
"author": "Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Richie765/meteor-pg/issues"
},
"homepage": "https://github.com/Richie765/meteor-pg#readme"
}