-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "validata-mongo",
"version": "1.1.1",
"description": "MongoDB update `$set` operations",
"keywords": [
"typescript",
"type-safe",
"typesafe",
"typed",
"validate",
"validator",
"validation",
"clean",
"cleanse",
"sanitise",
"sanitize",
"data validator",
"data clean",
"data cleanse",
"object validator",
"request validator",
"mongo",
"mongodb"
],
"repository": {
"type": "git",
"url": "[email protected]:gregbacchus/validata-mongo.git"
},
"license": "MIT",
"author": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/tsc --outDir dist --sourceMap",
"lint": "./node_modules/.bin/eslint src/ --ext .ts,.tsx",
"prepublishOnly": "npm run build && npm version patch",
"postpublish": "git push",
"test": "./node_modules/.bin/jest --verbose --runInBand",
"test-coverage": "./node_modules/.bin/jest --verbose --coverage --runInBand"
},
"dependencies": {
"validata": "^5.0.1"
},
"devDependencies": {
"@geeebe/jest-bdd": "^1.0.15",
"@types/faker": "^5.5.9",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"faker": "^5.5.3",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.2",
"validator": "^13.7.0"
}
}