-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "odatafy-mongodb",
"version": "0.0.11",
"description": "convert oData requests through odatafy to MongoDB queries ",
"main": "./dist/index.js",
"keywords": [
"odata",
"odata-v4",
"odatafy",
"mongodb"
],
"scripts": {
"test": "nyc mocha -r ts-node/register --exit \"./test/**/*.test.ts\" --timeout 0",
"build": "tsc",
"build-and-run": "tsc && node dist/index.js",
"docs": "npx typedoc index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gang-of-Fork/odatafy-mongodb.git"
},
"author": "Gang of Fork",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Gang-of-Fork/odatafy-mongodb/issues"
},
"homepage": "https://github.com/Gang-of-Fork/odatafy-mongodb#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"mocha": "^10.0.0",
"typedoc": "^0.22.18"
},
"dependencies": {
"mongodb": "^4.7.0",
"typescript": "^4.6.4",
"nyc": "^15.1.0",
"odatafy-parser": "1.3.0",
"ts-node": "^10.8.0"
}
}