-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "mz-react-input-number",
"version": "1.0.9",
"description": "This library is a React component that provides a user-friendly interface for entering numerical values. It accepts various props that can be used to customize its behavior and appearance.",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/mz-react-input-number.min.js",
"exports": {
"import": "./dist/mz-react-input-number.esm.js",
"default": "./dist/mz-react-input-number.min.js"
},
"scripts": {
"build:all": "npm run browser:build & npm run esm:build & npm run example:build",
"watch:all": "npm run browser:watch & npm run esm:watch & npm run example:watch",
"browser:build": "node run/browser.js",
"browser:watch": "node run/browser.js -- watch",
"esm:build": "node run/esm.js",
"esm:watch": "node run/esm.js -- watch",
"example:build": "node run/example.js",
"example:watch": "node run/example.js -- watch",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint ./src/**",
"typescript-declarations": "tsc --emitDeclarationOnly --noEmit false",
"docs:website": "http-server ./docs",
"docs:build": "node ./src/docs/generator/index.js",
"docs:watch": "nodemon ./src/docs/generator/index.js"
},
"keywords": [
"react-input-number",
"react input number",
"number input",
"input field",
"react text input",
"text box input",
"react",
"reactjs",
"react input",
"react input field",
"react components",
"reactjs components",
"reactjs library",
"reactjs textbox",
"textbox",
"number",
"input"
],
"author": "Miriam Zusin <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mzusin/mz-react-input-number"
},
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.1",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^29.5.0",
"esbuild": "^0.17.17",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"highlight.js": "^11.7.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"markdown-documentation-maker": "^1.0.18",
"mz-math": "^3.0.4",
"mz-particles": "^1.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"watch": [
"src/"
],
"ext": "js,json,html,css,md,ts,tsx,glsl"
}
}