forked from sametweb/react-step-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.99 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
{
"name": "react-step-builder",
"description": "Unopinionated multi step interface builder.",
"author": "Samet Mutevelli <[email protected]> (https://sametmutevelli.com)",
"version": "2.0.10",
"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.12.1",
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.5",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^10.4.9",
"@testing-library/react-hooks": "^3.4.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"coveralls": "^3.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "3.4.0",
"react-test-renderer": "^16.14.0",
"typescript": "^4.0.5"
},
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/*.{ts,tsx}",
"!**/src/*.{js,jsx}",
"!**/node_modules/**",
"!**/tests/**",
"!**/*.test.{js,jsx}",
"!**/coverage/**",
"!*/src/dist/**",
"!*/src/lib/**",
"!*/src/stepComponents/**"
],
"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": "jest --collect-coverage",
"coverage": "jest --coverage --detectOpenHandles --forceExit || true",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"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"
]
}
}