forked from neo9/n9-mongodb-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@neo9/n9-mongo-client",
"version": "0.30.1",
"description": "Library to easily start app with routing-controllers",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"license": "MIT",
"scripts": {
"build": "rimraf dist/ && tsc",
"dev": "rimraf dist/ && tsc --watch",
"format": "prettier --write '{,@(src|test)/**/}*.*'",
"lint": "eslint --config .eslintrc.yaml '{src,test}/**/*.ts'",
"lint:apply": "npm run format && eslint --fix --config .eslintrc.yaml '{src,test}/**/*.ts'",
"lint:verbose": "eslint --fix --config .eslintrc.yaml '{src,test}/**/*.ts' --format unix '{src,test}/**/*.ts'",
"test:dev": "export NODE_ENV=test && TS_NODE_FILES=true ava --verbose --color --serial --watch",
"test": "npm run lint && export NODE_ENV=test && TS_NODE_FILES=true nyc ava --verbose --color --serial && nyc report --reporter=html",
"test:watch": "node test/run-tests.js watch",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -f coverage.lcov",
"preversion": "npm test",
"prepublishOnly": "npm run build",
"release": "release-it --ci",
"release:dry": "release-it --ci --dry-run",
"build:changelog": "conventional-changelog -i CHANGELOG.md -s -p jscs -r 0",
"post:release": "echo Successfully released $npm_package_version",
"init": "./bin/setup-git-hooks",
"benchmark": "node benchmark.js",
"benchmark:debug": "node --inspect-brk benchmark.js"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run format && npm run lint"
}
},
"author": "Benjamin DANIEL <benjamin.daniel@neo9.fr>",
"repository": {
"type": "git",
"url": "git+https://github.com/neo9/n9-mongo-client.git"
},
"homepage": "https://github.com/neo9/n9-mongo-client#n9-mongo-client",
"tags": [
"express",
"typescript-express",
"routing-controllers"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@neo9/n9-node-log": "^4.1.0",
"@neo9/n9-node-utils": "^2.1.0",
"deep-diff": "^1.0.2",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.21",
"mingo-fork-no-hash": "^3.1.1",
"mongodb": "3.6.6",
"promise-pool-executor": "^1.1.1"
},
"peerDependencies": {
"class-transformer": "^0.4.0"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@commitlint/cli": "^16.2.3",
"@neo9/n9-coding-style": "^3.0.1",
"@release-it/conventional-changelog": "^5.1.1",
"@types/deep-diff": "^1.0.0",
"@types/lodash": "^4.14.182",
"@types/mongodb": "^3.6.12",
"@types/node": "^15.3.0",
"@types/std-mocks": "^1.0.1",
"ava": "^4.2.0",
"benny": "^3.7.1",
"class-transformer": "^0.4.0",
"codecov": "^3.8.3",
"husky": "^4.3.8",
"mongodb-memory-server": "6.9.6",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"release-it": "^15.5.0",
"std-mocks": "^1.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/neo9/n9-mongo-client/issues"
},
"directories": {
"test": "test"
},
"keywords": [
"mongo",
"mongodb",
"client",
"driver",
"Neo9",
"France"
],
"ava": {
"files": [
"test/*"
],
"timeout": "1m",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}