This repository was archived by the owner on Jan 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.45 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.45 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
73
74
75
76
77
78
79
80
81
{
"name": "react-bare-forms",
"version": "0.2.0",
"description": "A bare minimal React form library for quick & simple forms.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.js",
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack --mode production --entry=./src/index.ts --output-path='lib' --output-filename=index.js",
"watch:prod": "webpack --watch --mode production --entry=./src/index.ts --output-path=lib --output-filename=index.js",
"start": "webpack-dev-server --watch --config webpack.config.dev.js --output-path=dist --output-filename=bundle.js",
"serve": "webpack serve --config webpack.config.dev.js --mode development",
"test": "jest",
"test:update": "jest --updateSnapshot",
"typedoc": "typedoc --mode modules --ignoreCompilerErrors --stripInternal --out docs src && touch docs/.nojekyll && cp -r images docs/images",
"release": "npm run build:prod && npm publish"
},
"jest": {
"setupFiles": [
"./tests/setupTests.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js)?$",
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/tests/styleMock.js"
},
"testEnvironment": "jsdom"
},
"keywords": [
"react",
"typescript",
"forms",
"react-forms",
"javascript"
],
"author": "joegasewicz",
"license": "MIT",
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.5.1",
"@types/enzyme": "^3.10.12",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"codecov": "^3.7.0",
"css-loader": "^6.7.1",
"enzyme": "^3.11.0",
"eslint": "^8.24.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.2",
"ts-loader": "^9.4.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react-day-picker": "^8.2.1"
},
"files": [
"lib"
]
}