-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.65 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": "form-payload",
"version": "1.7.3",
"description": "Gets form-payload via form.elements",
"keywords": [
"form",
"form-data",
"form-values",
"form-payload",
"input-data",
"input-value",
"input-payload"
],
"author": "Vladyslav Zubko <[email protected]> (https://whatislove.dev/)",
"homepage": "https://github.com/what1s1ove/form-payload",
"repository": {
"type": "git",
"url": "git+https://github.com/what1s1ove/form-payload.git"
},
"bugs": {
"url": "https://github.com/what1s1ove/form-payload/issues",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"main": "./src/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"_prettier": "prettier \"**/*.{json,md,yml,js}\"",
"git:hook:precommit": "lint-staged",
"git:hook:commit": "npx @commitlint/cli --edit",
"ci:lint:fs": "ls-lint",
"ci:lint:editor": "editorconfig-checker",
"ci:lint:trash": "knip --config knip.config.js",
"ci:lint:format": "npm run _prettier -- --check",
"ci:lint:js": "eslint \"**/*.js\"",
"ci:lint:type": "tsc --noEmit",
"ci:lint": "npm run ci:lint:fs && npm run ci:lint:editor && npm run ci:lint:trash && npm run ci:lint:format && npm run ci:lint:js && npm run ci:lint:type",
"ci:test": "node --import jsdom-global/register.js --test",
"ci:format": "npm run _prettier -- --write",
"ci:prepare": "simple-git-hooks",
"build:clean": "rm -rf dist",
"build:dist": "tsc -p tsconfig.build.json",
"build:cp": "cp -r src readme.md package.json LICENSE dist",
"build:pkg": "cd dist && npm pkg set types=./src/index.d.ts",
"build": "npm run build:clean && npm run build:dist && npm run build:pkg && npm run build:cp"
},
"devDependencies": {
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@commitlint/types": "18.4.3",
"@eslint/js": "8.56.0",
"@ls-lint/ls-lint": "2.2.2",
"@testing-library/dom": "9.3.3",
"@types/eslint": "8.44.8",
"@types/lint-staged": "13.2.2",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"editorconfig-checker": "5.1.2",
"eslint": "8.55.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-perfectionist": "2.5.0",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unicorn": "49.0.0",
"globals": "13.24.0",
"jsdom": "23.0.1",
"jsdom-global": "3.0.2",
"knip": "3.8.1",
"lint-staged": "15.2.0",
"prettier": "3.1.0",
"prettier-plugin-jsdoc": "1.1.1",
"simple-git-hooks": "2.9.0",
"typescript": "5.3.2"
},
"simple-git-hooks": {
"pre-commit": "npm run git:hook:precommit",
"commit-msg": "npm run git:hook:commit"
}
}