-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
86 lines (86 loc) · 2.22 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
{
"name": "fastest-validator",
"version": "1.19.0",
"description": "The fastest JS validator library for NodeJS",
"main": "index.js",
"browser": "dist/index.min.js",
"types": "dist/index.d.ts",
"scripts": {
"bench": "node benchmark/index.js",
"bench:watch": "nodemon benchmark/index.js",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"lint": "eslint --ext=.js lib test rollup.config.js",
"lint:fix": "eslint --fix --ext=.js lib test rollup.config.js",
"deps": "npm-check -u",
"postdeps": "npm test",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "jest --coverage",
"test:travis": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/icebob/fastest-validator.git"
},
"keywords": [
"validation",
"validators",
"validate",
"schema"
],
"files": [
"dist",
"lib",
"index.js",
"index.d.ts"
],
"author": "Icebob",
"license": "MIT",
"bugs": {
"url": "https://github.com/icebob/fastest-validator/issues"
},
"homepage": "https://github.com/icebob/fastest-validator#readme",
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
"@types/jest": "^27.0.2",
"@types/mongodb": "^4.0.7",
"benchmarkify": "^3.0.0",
"cli-highlight": "^2.1.11",
"coveralls": "^3.1.1",
"eslint": "^8.22.0",
"jest": "^27.2.5",
"jest-cli": "^27.2.5",
"mongodb": "^4.17.2",
"nodemon": "^2.0.19",
"npm-check": "^6.0.1",
"prettier": "^2.7.1",
"rollup": "^2.78.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-uglify-es": "^0.0.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.1",
"tsd": "^0.22.0",
"typescript": "^4.7.4"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./lib",
"roots": [
"../test"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "test/typescript/tsconfig.json",
"diagnostics": true
}
}
}
}