forked from jaystack/odata-v4-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 991 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
43
{
"name": "odata-v4-mongodb",
"version": "0.1.10",
"description": "Service OData requests from a MongoDB data store",
"main": "lib/index.js",
"typings": "lib/index",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc src/index.ts --outDir lib -d",
"pretest": "npm run build",
"test": "mocha",
"pretdd": "npm run build",
"tdd": "mocha -w",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-mongodb.git"
},
"keywords": [
"OData",
"server",
"V4",
"parser"
],
"author": "JayStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/odata-v4-mongodb/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-mongodb#readme",
"dependencies": {
"odata-v4-literal": "^0.1.0",
"odata-v4-parser": "^0.1.18"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"typescript": "^2.2.1"
}
}