-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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": "tiny-octopus",
"description": "This is a POC. DO NOT EVER USE IN PRODUCTION.",
"version": "0.1.1",
"main": "src/index.js",
"dependencies": {
"mongodb": "3.0.3"
},
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w",
"test:single": "istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js",
"check-coverage": "istanbul check-coverage --statements 100 --branches 70 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"devDependencies": {
"chai": "4.1.2",
"codecov.io": "0.1.6",
"cz-conventional-changelog": "2.1.0",
"istanbul": "0.4.5",
"mocha": "5.0.1"
},
"keywords": [
"mongodb",
"change streams",
"changestream"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/distalx/tiny-octopus.git"
},
"bugs": {
"url": "https://github.com/distalx/tiny-octopus/issues"
},
"homepage": "https://github.com/distalx/tiny-octopus#readme",
"author": "dx <[email protected]>",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}