-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "moat-maker",
"version": "2.2.0",
"description": "Validate your runtime data with easy to pick up, TypeScript-inspired syntax.",
"author": "Scotty Jamison",
"type": "module",
"keywords": [
"TypeScript",
"validate",
"validation",
"validator",
"verify",
"check",
"data"
],
"files": [
"/build"
],
"main": "build/index.js",
"scripts": {
"prepublishOnly": "source $HOME/.nvm/nvm.sh && npm run lint && npm test && npm run build",
"build": "rm -rf ./build && npx tsc --build tsconfig.json",
"test": "npx jest -c jest.config.js --maxWorkers=1",
"test:watch": "npx jest -c jest.config.js --maxWorkers=1 --watch",
"lint": "eslint test/*.ts src/*.ts",
"lint:fix": "eslint test/*.ts src/*.ts --fix"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theScottyJam/moat-maker"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"engines" : {
"node" : ">=16.0.0"
}
}