-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.27 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
73
74
75
76
77
78
{
"name": "mongodb-aggregation-builder",
"version": "1.0.9",
"description": "Pipeline constructor for the aggregate method of a mongoDB collection",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest --runInBand",
"test-cov": "jest --runInBand --coverage",
"test:ci": "CI=true npm test -- --coverage --testResultsProcessor=jest-sonar-reporter",
"compodoc": "npx compodoc -p tsconfig.json lib --theme postmark",
"tag-pre-release": "standard-version --prerelease",
"publish-pre-release": "npm publish dist --tag prerelease",
"tag-release": "standard-version",
"publish-release": "npm run copy-release-files && npm publish dist --tag latest",
"copy-release-files": "copyfiles package.json Readme.md .npmignore .npmrc dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smithg09/mongo-aggregation-builder.git"
},
"keywords": [
"mongodb",
"mongoose",
"aggregate",
"pipeline",
"builder",
"helper",
"constructor",
"aggregation",
"pagination"
],
"author": "Smith Gajjar <[email protected]> (https://smithgajjar.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smithg09/mongo-aggregation-builder/issues"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@compodoc/compodoc": "^1.1.11",
"@types/jest": "^26.0.20",
"copyfiles": "^2.4.1",
"jest": "^26.6.3",
"jest-sonar-reporter": "^2.0.0",
"standard-version": "^9.1.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"jest": {
"rootDir": "lib",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"testRegex": ".test.ts$",
"coverageDirectory": "../coverage",
"coveragePathIgnorePatterns": [
"/.circleci/",
"/coverage/",
"/documentation/",
"/node_modules/",
"/dist/"
],
"testEnvironment": "node",
"reporters": [
"default"
]
},
"dependencies": {}
}