-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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
49
{
"name": "odata-v4-server-pgsql-example",
"version": "0.1.0",
"description": "OData V4 Server with Postgres example",
"main": "lib/index.js",
"typings": "lib/index",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run tsc",
"tsc": "tsc",
"tsc:w": "tsc -w",
"test": "mocha test/*.spec.js --reporter mochawesome --reporter-options reportDir=report,reportName=odata-v4-server,reportTitle=\"OData V4 Server\"",
"pretest": "npm run build",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaystack/odata-v4-server-pgsql-example.git"
},
"bugs": {
"url": "https://github.com/jaystack/odata-v4-server-pgsql-example/issues"
},
"homepage": "https://github.com/jaystack/odata-v4-server-pgsql-example#readme",
"keywords": [
"odata",
"server",
"postgres"
],
"author": "JayStack",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.0.34",
"@types/pg": "^6.1.34",
"@types/ramda": "0.0.2",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"mochawesome": "^1.5.4",
"typescript": "^2.0.10"
},
"dependencies": {
"express": "^4.14.0",
"odata-v4-pg": "^0.1.0",
"odata-v4-server": "^0.1.18",
"pg": "^6.1.0",
"ramda": "^0.22.1"
}
}