-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 804 Bytes
/
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
{
"name": "sql-composer",
"version": "0.1.1",
"description": "Composable SQL template strings for Node.js",
"author": {
"name": "Rafee Memon",
"email": "rafeememon@gmail.com",
"url": "https://github.com/rafeememon/"
},
"repository": {
"type": "git",
"url": "git://github.com/rafeememon/node-sql-composer.git"
},
"license": "MIT",
"homepage": "http://github.com/rafeememon/node-sql-composer",
"keywords": [
"es6",
"tagged",
"template",
"string",
"sql",
"query",
"statement",
"parameter"
],
"files": [
"*.md",
"lib"
],
"main": "./lib/sql.js",
"scripts": {
"test": "standard && mocha"
},
"devDependencies": {
"babel": "^5.8.34",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"standard": "^5.4.1"
}
}