-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.01 KB
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
64
65
66
67
68
69
70
71
72
{
"name": "@lifesg/validation-schema-generator",
"version": "1.3.14",
"description": "JSON to validation schema for frontend-engine",
"main": "cjs/index.js",
"module": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run rollup && npm run post:build",
"rollup": "rm -rf dist && rollup -c",
"post:build": "node ./scripts/post-build.js",
"publish-lib": "npm publish ./dist",
"lint": "eslint '*/**/*.{js,jsx,ts,tsx}' --quiet --fix",
"test": "jest --config jest/jest.config.js --coverage",
"prepare": "(test -d ./.git && npx husky install) || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LifeSG/validation-schema-generator.git"
},
"keywords": [
"frontend-engine",
"validation-schema-generator"
],
"author": "LifeSG",
"license": "ISC",
"bugs": {
"url": "https://github.com/LifeSG/validation-schema-generator/issues"
},
"homepage": "https://github.com/LifeSG/validation-schema-generator#readme",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint"
]
},
"dependencies": {
"@js-joda/core": "^5.5.2",
"@js-joda/locale_en-us": "^4.8.6",
"image-size": "^1.0.2",
"libphonenumber-js": "^1.10.18",
"magic-bytes.js": "^1.10.0"
},
"peerDependencies": {
"yup": "^0.32.11"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-junit": "^17.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tslib": "^2.8.1",
"typescript": "^4.9.4",
"yup": "^0.32.11"
}
}