forked from jaystack/odata-v4-inmemory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 877 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
{
"name": "odata-v4-inmemory",
"version": "0.1.9",
"description": "Service OData requests from an inmemory 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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-inmemory.git"
},
"keywords": [
"OData",
"server",
"V4",
"parser"
],
"author": "JayStack",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaystack/odata-v4-inmemory/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-inmemory#readme",
"dependencies": {
"odata-v4-parser": "^0.1.9"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"typescript": "^1.8.9"
}
}