-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "odata-v4-mssql",
"version": "0.1.0",
"description": "OData to MS-SQL 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-mssql.git"
},
"keywords": [
"OData",
"V4",
"sql"
],
"author": "JayStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/odata-v4-mssql/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-mssql#readme",
"dependencies": {
"odata-v4-sql": "^0.1.0",
"odata-v4-parser": "0.1.13"
},
"devDependencies": {
"@types/config": "^0.0.30",
"@types/mssql": "^3.1.29",
"chai": "^3.5.0",
"config": "^1.21.0",
"mocha": "^3.1.2",
"mssql": "^3.3.0",
"odata-v4-server": "rc",
"typescript": "^2.5.1"
}
}