forked from sametweb/react-step-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "react-step-builder",
"description": "Headless, unopinionated, multi-step interface builder.",
"author": "Samet Mutevelli <[email protected]> (https://sametmutevelli.com)",
"version": "3.0.3",
"private": false,
"main": "src/dist/index",
"types": "src/dist/index.d.ts",
"module": "src/dist/index.js",
"files": [
"src/dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/sametweb/react-step-builder"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/runtime": "^7.16.5",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"typescript": "^4.5.4"
},
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/dist/*.js",
"!src/dist/*.jsx",
"!src/dist/*.ts",
"!src/dist/*.tsx"
],
"scripts": {
"start": "react-scripts start",
"build": "SET NODE_ENV=production&tsc&babel src/lib --out-dir src/dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test"
},
"keywords": [
"step-builder",
"react-step-builder",
"create steps in react",
"step by step form",
"multi step form",
"react multi step registration"
],
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}