-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.26 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
{
"name": "@rotorsoft/event-store",
"version": "0.3.5",
"description": "Generic multi-tenant event sourcing store",
"main": "index.js",
"scripts": {
"mocha-one": "mocha ./test/basic.spec.js --reporter spec --timeout 10000 || exit 0",
"mocha-all": "mocha ./test/**/*.spec.js --reporter spec --timeout 10000 || exit 0",
"cover-all": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/**/*.spec.js -- -R spec --timeout 10000",
"cover-firebase": "firebase emulators:exec --only firestore \"npm run cover-all\"",
"test-firebase": "firebase emulators:exec --only firestore \"npm run mocha-all\"",
"test-firebase-one": "firebase emulators:exec --only firestore \"npm run mocha-one\"",
"test-azure": "set PROVIDER=azure && mocha ./test/**/*.spec.js --reporter spec --timeout 10000 || exit 0",
"test-azure-one": "set PROVIDER=azure && mocha ./test/basic.spec.js --reporter spec --timeout 10000 || exit 0",
"test-mongo": "set PROVIDER=mongodb && mocha ./test/**/*.spec.js --reporter spec --timeout 10000 || exit 0",
"test-mongo-one": "set PROVIDER=mongodb && mocha ./test/basic.spec.js --reporter spec --timeout 10000 || exit 0",
"test-dynamo": "set PROVIDER=dynamodb && mocha ./test/**/*.spec.js --reporter spec --timeout 10000 || exit 0",
"test-dynamo-one": "set PROVIDER=dynamodb && mocha ./test/basic.spec.js --reporter spec --timeout 10000 || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rotorsoft/event-store.git"
},
"keywords": [
"CQRS",
"Event Sourcing",
"DDD",
"Serverless",
"Firebase",
"Firestore",
"CosmosDB",
"DynamoDB",
"MongoDB"
],
"author": {
"name": "rotorsoft",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/rotorsoft/event-store/issues"
},
"homepage": "https://github.com/rotorsoft/event-store#readme",
"dependencies": {},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@azure/cosmos": "^2.1.7",
"@firebase/testing": "^0.11.4",
"@google-cloud/firestore": "^2.2.4",
"aws-sdk": "^2.499.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"mongodb": "^3.2.7"
}
}