-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 911 Bytes
/
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
{
"name": "@gchumillas/schema-fixer",
"license": "ISC",
"version": "2.0.5",
"type": "commonjs",
"description": "Schema validator and fixer",
"repository": "github:gchumillas/schema-fixer",
"author": "Gonzalo Chumillas",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"engines": {
"node": ">=14.18.1"
},
"keywords": [
"schema",
"validator",
"fixer"
],
"scripts": {
"test": "jest ./src",
"lint": "eslint 'src/**/*.js'",
"build": "gulp build",
"prepare": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@types/jest": "^26.0.24",
"eslint": "^7.32.0",
"eslint-plugin-node": "^11.1.0",
"fs-extra": "^10.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}