-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.72 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
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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fjl-monorepo",
"version": "0.0.0",
"description": "",
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.33",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"del": "^7.1.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-puppeteer": "^8.0.6",
"lint-staged": "^15.2.5",
"puppeteer": "^22.10.0",
"rollup": "^2.79.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"eslint": "eslint -c .eslintrc.json .",
"link-packages": "node node_scripts/tasks/link-packages.mjs",
"lint": "pnpm eslint",
"lintfix": "pnpm eslint --fix",
"lint-staged": "lint-staged",
"prepare": "husky",
"test": "jest -c jest.config.mjs",
"test:fjl": "jest -c jest.config.mjs --selectProjects fjl",
"test:fjl-filter": "jest --c jest.config.mjs --selectProjects fjl-filter",
"test:fjl-inputfilter": "jest -c jest.config.mjs --selectProjects fjl-inputfilter",
"test:fjl-validator": "jest -c jest.config.mjs --selectProjects fjl-validator",
"test:fjl-validator-recaptcha": "jest -c jest.config.mjs --selectProjects fjl-validator-recaptcha",
"test:staged": "jest -c jest.config.mjs --bail --findRelatedTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/functional-jslib/fjl.git"
},
"keywords": [],
"author": "Ely De La Cruz <elycruz@elycruz.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/functional-jslib/fjl/issues"
},
"homepage": "https://github.com/functional-jslib/fjl#readme",
"workspaces": [
"./packages/fjl",
"./packages/fjl-validator",
"./packages/fjl-validator-recaptcha",
"./packages/fjl-inputfilter"
],
"engines": {
"node": ">=16",
"npm": ">=8",
"pnpm": ">=8"
},
"lint-staged": {
"*.{js,cjs,mjs,ts}": [
"tsc-files --noEmit",
"eslint --fix"
]
},
"mockServerPort": 10087,
"mockServerCommand": "node ./packages/fjl-validator-recaptcha/tests/mock-server.js",
"dependencies": {
"fjl": "workspace:2.0.0-alpha.5",
"fjl-inputfilter": "workspace:^",
"fjl-validator": "workspace:^"
},
"packageManager": "pnpm@8.13.1+sha512.758bebc6989cb6462c5138129840193b10c258ddcdb0ab43ee0ef9dd87784bc218d6e41cb5beeac362b8ce33f1f8b08025b599933c0bce82050a9a36b8474d43"
}