-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "knex-alasql",
"version": "0.0.3",
"description": "AlaSQL plugin dialect for knex.js",
"main": "index.js",
"scripts": {
"babel": "babel -L -D src/ --out-dir lib/ --source-maps=inline",
"prepublish": "rimraf lib && npm run babel",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/vellotis/knex-alasql.git"
},
"keywords": [
"alasql",
"knex",
"sql",
"db-mock"
],
"author": {
"name": "Kaarel Raspel",
"web": "https://github.com/vellotis"
},
"bugs": {
"url": "https://github.com/vellotis/knex-alasql/issues"
},
"homepage": "https://github.com/vellotis/knex-alasql#readme",
"dependencies": {
"alasql": "^0.2.6",
"knex": ">=0.11.4",
"lodash.assign": "^4.0.9",
"lodash.pick": "^4.2.1"
},
"peerDependencies": {
"knex": ">=0.11.4"
},
"devDependencies": {
"babel": "^5.2.17",
"rimraf": "^2.5.2"
},
"files": [
"README.md",
"src/*",
"lib/*",
"index.js",
"LICENSE"
]
}