forked from icebob/fastest-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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": "fastest-validator",
"version": "0.6.16",
"description": "The fastest JS validator library for NodeJS",
"main": "dist/index.js",
"browser": "dist/index.min.js",
"scripts": {
"bench": "node benchmark/index.js",
"build": "rollup -c",
"prepublish": "npm run build",
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test": "jest --coverage",
"lint": "eslint --ext=.js lib test rollup.config.js",
"lint:fix": "eslint --fix --ext=.js lib test rollup.config.js",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/icebob/fastest-validator.git"
},
"keywords": [
"validation",
"validators",
"validate",
"schema"
],
"files": [
"dist",
"examples",
"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": {
"benchmarkify": "2.1.0",
"coveralls": "3.0.2",
"eslint": "5.8.0",
"jest": "23.6.0",
"jest-cli": "23.6.0",
"npm-check": "5.9.0",
"rollup": "0.67.0",
"rollup-plugin-buble": "0.19.4",
"rollup-plugin-closure-compiler-js": "1.0.6",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-uglify-es": "0.0.1"
},
"jest": {
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"rootDir": "./lib",
"roots": [
"../test"
]
}
}