-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
99 lines (99 loc) · 2.88 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
{
"name": "mz-react-round-slider",
"version": "1.0.3",
"description": "Multi-Pointer React Round Slider",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/mz-react-round-slider.min.js",
"exports": {
"import": "./dist/mz-react-round-slider.esm.js",
"default": "./dist/mz-react-round-slider.min.js",
"types": "./dist/index.d.ts"
},
"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": [
"slider",
"range slider",
"circular round slider",
"circular slider",
"radial slider",
"react range slider component",
"circle slider",
"react round slider",
"react circle slider",
"react circular slider",
"react radial slider",
"react range slider"
],
"author": "Miriam Zusin <miriam.zusin@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mzusin/react-round-slider"
},
"license": "MIT",
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"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"
},
"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.9",
"babel-jest": "^29.5.0",
"esbuild": "^0.17.17",
"eslint": "^8.42.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"markdown-documentation-maker": "^1.0.24",
"mz-math": "^3.0.17",
"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"
}
}