-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "odata-v4-mysql",
"version": "0.1.1",
"description": "OData to MySQL query compiler",
"main": "build/lib/index.js",
"typings": "build/lib/index",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "mocha",
"pretdd": "npm run build",
"tdd": "mocha -w",
"prepublish": "npm run build",
"start": "tsc && node build/example/sql.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-mysql.git"
},
"keywords": [
"OData",
"V4",
"sql"
],
"author": "JayStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/odata-v4-mysql/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-mysql#readme",
"dependencies": {
"odata-v4-parser": "0.1.13",
"odata-v4-sql": "^0.1.1"
},
"devDependencies": {
"@types/config": "^0.0.30",
"@types/mysql": "^0.0.30",
"chai": "^3.5.0",
"config": "^1.21.0",
"mocha": "^3.1.2",
"mysql": "^2.12.0",
"odata-v4-server": "rc",
"typescript": "^2.0.6"
}
}