-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "nm-validator",
"version": "1.0.18",
"description": "Simple json validator by using user-defined validation rules",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"clean": "rm -rf ./dist",
"clean-test": "yarn clean && yarn test",
"deep-clean": "yarn clean && rm -rf node_modules",
"deep-clean-test": "yarn deep-clean && yarn install && yarn test",
"build": "yarn deep-clean && yarn install && tsc && yarn test",
"version-patch": "yarn build && npm version patch && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supendi/nm-validator.git"
},
"keywords": [
"validator",
"json validator",
"js validator",
"javascript validator"
],
"author": "github.com/supendi",
"license": "ISC",
"bugs": {
"url": "https://github.com/supendi/nm-validator/issues"
},
"homepage": "https://github.com/supendi/nm-validator#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
}
}