forked from dimadeveatii/mongo-dot-notation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "mongo-dot-notation",
"version": "3.0.0",
"description": "Transform objects to MongoDB update instructions",
"author": {
"name": "Dumitru Deveatii",
"email": "[email protected]"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/dimadeveatii/mongo-dot-notation.git"
},
"bugs": "https://github.com/dimadeveatii/mongo-dot-notation/issues",
"keywords": [
"mongo",
"dot",
"dot-notation",
"transform",
"convert",
"operators",
"instructions",
"json",
"objects",
"parsing",
"data",
"flatten",
"update"
],
"license": "MIT",
"scripts": {
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"build": "tsc -p .",
"test": "jest tests/*.spec.ts",
"test:coverage": "jest --coverage tests/*.spec.ts",
"test:e2e": "jest tests/*.e2e.ts",
"test:e2e:docker": "docker-compose up --no-log-prefix --exit-code-from node --attach node"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"jest": "^28.1.3",
"mongodb": "^4.8.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"sideEffects": false
}