Skip to content

Commit e1796a8

Browse files
committed
prepare Bower publish
1 parent 640464d commit e1796a8

File tree

2 files changed

+39
-4
lines changed

2 files changed

+39
-4
lines changed

bower.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "sql-parser",
3+
"version": "1.0.0",
4+
"authors": [{
5+
"name": "Andy Kent",
6+
"email": "andy@forward.co.uk"
7+
}],
8+
"description": "Lexer and Parser for SQL Syntax",
9+
"main": "browser/sql-parser.js",
10+
"keywords": [
11+
"sql",
12+
"lexer",
13+
"parser",
14+
"ast"
15+
],
16+
"license": "MIT",
17+
"homepage": "https://github.com/mistic100/sql-parser",
18+
"repository": {
19+
"type": "git",
20+
"url": "git://github.com/mistic100/sql-parser.git"
21+
},
22+
"ignore": [
23+
"**/.*",
24+
"node_modules",
25+
"bower_components",
26+
"src",
27+
"test",
28+
"package.json",
29+
"Cakefile"
30+
]
31+
}

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sql-parser",
33
"description": "Lexer and Parser for SQL Syntax",
4-
"version": "0.5.0",
4+
"version": "1.0.0",
55
"scripts": {
66
"test": "./node_modules/.bin/cake build && ./node_modules/.bin/mocha --require should --compilers coffee:coffee-script/register"
77
},
@@ -12,8 +12,12 @@
1212
"directories": {
1313
"lib" : "./lib"
1414
},
15-
"dependencies": {
16-
},
15+
"keywords": [
16+
"sql",
17+
"lexer",
18+
"parser",
19+
"ast"
20+
],
1721
"devDependencies": {
1822
"jison": "0.4.15",
1923
"coffee-script": "1.8.0",
@@ -25,6 +29,6 @@
2529
],
2630
"repository": {
2731
"type": "git",
28-
"url": "http://github.com/forward/sql-parser.git"
32+
"url": "http://github.com/mistic100/sql-parser.git"
2933
}
3034
}

0 commit comments

Comments
 (0)