-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 2.14 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
{
"name": "gesundheit",
"description": "Concise SQL generation for Postgres and MySQL",
"keywords": [
"sql",
"query",
"sqlalchemy",
"arel"
],
"homepage": "http://betsmartmedia.github.com/gesundheit",
"repository": {
"type": "git",
"url": "git://github.com/BetSmartMedia/gesundheit.git"
},
"bugs": {
"url": "https://github.com/BetSmartMedia/gesundheit/issues"
},
"version": "0.10.0",
"private": false,
"main": "lib",
"files": [
"package.json",
"README.rst",
"src",
"lib",
"Makefile",
"doc/*.rst"
],
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"any-db-transaction": "2.x"
},
"peerDependencies": {
"any-db": "2.x"
},
"browser": {
"any-db": false
},
"devDependencies": {
"coffee-script": "~1.4.0",
"any-db": "2.x",
"any-db-postgres": "2.x",
"any-db-sqlite3": "2.x",
"any-db-mysql": "2.x",
"tap": "~0.4.0",
"browserify": "2.x.x",
"coffeeify": "~0.5.1"
},
"author": "Stephen Sugden <[email protected]> (http://www.betsmartmedia.com)",
"optionalDependencies": {},
"scripts": {
"compile": "rm -fr lib && coffee -o lib -bc src && cp src/sql_keywords.txt lib/ && browserify -s gesundheit lib/index.js > gesundheit-standalone.js && cp gesundheit-standalone.js doc/_static/",
"test": "npm run compile && npm run unit-test && npm run integration-test",
"unit-test": "tap test/unit",
"integration-test": "npm run init-mysql && npm run init-postgres && tap test/integration",
"prepare-release": "npm run compile && npm test && npm run build-doc && npm run commit-pages",
"commit-pages": "OLD_HEAD=`git describe --contains --all HEAD` && git checkout gh-pages && cp -R doc/_build/html/ ./ && git commit -a -m v$npm_package_version && git checkout $OLD_HEAD",
"build-docs": "npm run compile && make -C doc html",
"init-mysql": "mysql -u root -e 'drop database if exists gesundheit_test' && mysql -u root -e 'create database gesundheit_test'",
"init-postgres": "psql -U postgres -c 'drop database if exists gesundheit_test' && psql -U postgres -c 'create database gesundheit_test'"
},
"license": "MIT"
}