-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
51 lines (51 loc) · 1.13 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
{
"author": {
"name": [
"Chia-liang Kao"
],
"email": "[email protected]"
},
"name": "plv8x",
"description": "Use JavaScript expressions and modules in PostgreSQL plv8",
"version": "0.7.0",
"keywords": [
"postgres",
"pg",
"database",
"plv8"
],
"main": "lib/index.js",
"bin": {
"plv8x": "bin/plv8x"
},
"repository": {
"type": "git",
"url": "git://github.com/clkao/plv8x.git"
},
"scripts": {
"test": "env PATH=\"./node_modules/.bin:$PATH\" mocha",
"prepublish": "env PATH=\"./node_modules/.bin:$PATH\" lsc -cj package.ls &&\nenv PATH=\"./node_modules/.bin:$PATH\" lsc -bc -o lib src"
},
"engines": {
"node": "*"
},
"dependencies": {
"async": "^0.9.0",
"optimist": "0.6.x",
"pg": "^4.2.0",
"pg-native": "^1.8.0",
"resolve": "0.6.x",
"browserify": "^8.1.3",
"tmp": "0.0.x",
"LiveScript": "1.2.0",
"pretty-bytes": "^1.0.3",
"js-yaml": "3.0.x"
},
"devDependencies": {
"mocha": "^2.1.0",
"chai": "^2.0.0",
"sequelize": "git://github.com/clkao/sequelize.git",
"uax11": "0.0.2"
},
"optionalDependencies": {}
}