-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.69 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "querycraft-to-mongodb",
"version": "0.1.0",
"description": "Data query abstraction layer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "tsc",
"start": "mocha --watch lib/*.* --watch-extensions ts --bail",
"serve:cov": "http-server -p 8001 coverage/",
"test": "nyc mocha --reporter mocha-junit-reporter",
"test:cov": "nyc npm test",
"posttest:cov": "nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeameryHQ/QueryCraft-To-MongoDB.git"
},
"author": "Dayo Adeyemi",
"license": "MIT",
"bugs": {
"url": "https://github.com/BeameryHQ/QueryCraft-To-MongoDB/issues"
},
"homepage": "https://github.com/BeameryHQ/QueryCraft-To-MongoDB#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/debug": "0.0.30",
"@types/mocha": "^2.2.44",
"@types/mongodb": "^2.2.16",
"@types/node": "^8.0.54",
"@types/ramda": "^0.25.6",
"chai": "^4.1.2",
"http-server": "^0.10.0",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"moment": "^2.19.3",
"mongodb": "^2.2.33",
"nyc": "^11.3.0",
"querycraft": "^0.1.3",
"querycraft-to-function": "^0.0.13",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"typescript": "^2.6.1"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"lib/**/*.ts"
],
"exclude": [
"**/*.test.ts",
"**/*.d.ts"
],
"reporter": [
"lcov"
],
"all": true
},
"peerDependencies": {
"querycraft": "^0.1.3"
},
"dependencies": {}
}