-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "eip-mongo",
"description": "Mongodb Adapter for the eip module. It supports an aggregator store saved in mongodb.",
"version": "0.2.0",
"dependencies": {
"log4js": "^1.1.0"
},
"peerDependencies": {
"eip": "^1.0.2",
"mongoose": ">=4.0.0"
},
"main": "build/lib/index.js",
"typings": "build/index",
"scripts": {
"clean": "rm -rf ./build",
"prebuild": "npm run clean",
"build": "tsc -p .",
"prewatch": "npm run clean",
"watch": "tsc -w -p .",
"prepublishOnly": "npm test",
"pretest": "tslint src/*.ts && npm run build",
"test": "nyc --reporter=text-summary ./node_modules/.bin/_mocha build/test -- --recursive -R spec --exit",
"posttest": "nyc report --reporter=html --reporter=lcov && nyc check-coverage --statements 80 --branches 70 --functions 80 --lines 80"
},
"author": "Nikos Kostoulas <kostoulas@workable.com>",
"license": "MIT",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/log4js": "0.0.32",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^4.7.21",
"@types/node": "^14.14.7",
"@types/node-uuid": "0.0.28",
"@types/should": "8.1.30",
"@types/sinon": "1.16.34",
"@types/source-map-support": "0.2.28",
"@types/supertest": "2.0.12",
"@types/uuid": "2.0.29",
"eip": "^1.6.4",
"mocha": "^6.1.4",
"mongoose": "^4.11.1",
"mongoose-fixtures": "0.0.1",
"nyc": "^14.1.1",
"should": "11.2.0",
"sinon": "1.17.7",
"source-map-support": "^0.4.5",
"tslint": "^6.1.3",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "Workable/eip-mongo"
}
}