1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
"name": "react-component-form",
2021-06-17 19:32:56 +02:00
"version": "0.0.0-development",
2022-02-19 17:18:13 +01:00
"public": true,
2020-08-04 16:22:31 +02:00
"description": "Manage React Forms with ease.",
2020-08-04 16:49:14 +02:00
"author": "Divlo <contact@divlo.fr>",
2020-08-04 16:22:31 +02:00
"license": "MIT",
2020-08-04 16:49:14 +02:00
"repository": {
"type": "git",
2022-02-19 17:18:13 +01:00
"url": "https://github.com/Divlo/react-component-form.git"
2020-08-04 16:49:14 +02:00
},
"keywords": [
"react-form",
"react-component-form"
],
"bugs": {
"url": "https://github.com/Divlo/react-component-form/issues"
},
"homepage": "https://github.com/Divlo/react-component-form#readme",
2021-06-17 18:48:19 +02:00
"module": "dist/react-component-form.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
2020-10-03 19:07:09 +02:00
},
2020-08-04 16:22:31 +02:00
"scripts": {
2021-06-17 18:48:19 +02:00
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-02-19 17:18:13 +01:00
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
2021-06-17 19:32:56 +02:00
"lint:typescript": "tsdx lint",
"release": "semantic-release"
2020-08-04 16:22:31 +02:00
},
"peerDependencies": {
2021-06-17 18:48:19 +02:00
"react": ">=16"
2020-10-26 02:56:36 +01:00
},
2021-06-17 18:48:19 +02:00
"devDependencies": {
2022-02-19 17:18:13 +01:00
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@testing-library/react": "12.1.3",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
2021-06-17 18:48:19 +02:00
"editorconfig-checker": "4.0.2",
2022-02-19 17:18:13 +01:00
"markdownlint-cli": "0.31.1",
2021-06-17 18:48:19 +02:00
"react": "17.0.2",
"react-dom": "17.0.2",
2022-02-19 17:18:13 +01:00
"semantic-release": "19.0.2",
2021-06-17 18:48:19 +02:00
"tsdx": "0.14.1",
2022-02-19 17:18:13 +01:00
"typescript": "4.5.5"
2020-08-04 16:49:14 +02:00
}
2020-08-04 16:22:31 +02:00
}