-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "noflo-pg",
"description": "PostgreSQL using node-postgres for NoFlo",
"keywords": [
"noflo",
"database",
"postgresql",
"postgres",
"pgsql",
"pg",
"sql",
"relational"
],
"author": "Kenneth Kan <kenhkan@gmail.com>",
"version": "0.0.14",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kenhkan/noflo-pg/blob/master/LICENSE.md"
}
],
"engines": {
"node": ">=0.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kenhkan/noflo-pg"
},
"dependencies": {
"noflo": "~0.4.0",
"underscore": "1.4.x",
"underscore.string": "2.3.x",
"pg": "0.8.x",
"noflo-test": "0.0.6",
"grunt": "~0.4.1",
"grunt-exec": "~0.4.2",
"noflo-groups": "~0.1.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"noflo-test": "~0.0.6",
"grunt-contrib-coffee": "~0.6.6",
"grunt-coffeelint": "~0.0.6",
"grunt-cafe-mocha": "~0.1.2",
"chai": "~1.5.0",
"mocha": "~1.9.0",
"grunt-mocha-phantomjs": "~0.2.2",
"grunt-component-build": "~0.2.7",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.3.1",
"component-json": "~0.1.4",
"grunt-combine": "~0.8.3",
"grunt-component": "~0.1.2"
},
"noflo": {
"components": {
"Client": "./components/Client.coffee",
"Build": "./components/Build.coffee",
"Sanitize": "./components/Sanitize.coffee"
},
"graphs": {
"Sql": "./graphs/Sql.fbp",
"Postgres": "./graphs/Postgres.fbp"
}
},
"scripts": {
"test": "grunt test"
}
}