-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
42 lines (42 loc) · 908 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
41
42
{
"name": "odata-v4-sql",
"version": "0.1.2",
"description": "OData to SQL query compiler",
"main": "lib/index.js",
"typings": "lib/index",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "mocha",
"pretdd": "npm run build",
"tdd": "mocha -w",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-sql.git"
},
"keywords": [
"OData",
"V4",
"sql"
],
"author": "JayStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/odata-v4-sql/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-sql#readme",
"dependencies": {
"odata-v4-literal": "^0.1.0",
"odata-v4-parser": "0.1.13"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"typescript": "^2.5.1"
}
}