-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.34 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
{
"name": "@xolos/react-stepper",
"version": "1.1.0",
"description": "A simple, flexible React step wizard hook",
"main": "dist/index.js",
"author": {
"name": "Omar De Los Santos",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/omarnyte/react-stepper",
"repository": "omarnyte/react-stepper",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"keywords": [
"React",
"hooks",
"wizard"
],
"devDependencies": {
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.52.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"typescript": "^4.3.4"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}