-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "@jackym/schema-validator",
"version": "1.1.0",
"description": "Validate an object against an user defined schema. If the object satisfies the schema, then a copy of the object that conforms to the schema is returned",
"main": "dist/index-cjs.js",
"module": "dist/index-esm.js",
"scripts": {
"test": "jest --coverage --verbose",
"linter": "eslint src __tests__",
"build": "rollup -c"
},
"keywords": [
"schema validator",
"object validator",
"object validation",
"validator",
"custom validator"
],
"repository": {
"type": "git",
"url": "https://github.com/Jacky-Mo/schema-validator.git"
},
"author": "Jacky Mo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"rollup": "^2.58.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6"
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}