-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 KB
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
{
"name": "use-loading-steps",
"keywords": [
"react",
"lazy",
"loading",
"state"
],
"author": "@edingroot",
"repository": "edingroot/use-loading-steps",
"version": "0.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.modern.js",
"source": "lib/index.ts",
"license": "MIT",
"files": [
"dist",
"lib",
"readme.md"
],
"scripts": {
"clean": "rm -rf dist/* node_modules",
"build": "yarn clean && yarn install && microbundle --compress --no-sourcemap",
"test": "npm install react && jest"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.5.0",
"@types/react": "^17.0.43",
"@types/react-test-renderer": "^18.0.0",
"jest": "^28.1.0",
"microbundle": "^0.14.2",
"react-test-renderer": "^18.1.0",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"tslint": "^6.1.3",
"tslint-react": "^5.0.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"react": "^18.1.0"
},
"dependencies": {
"@xstate/react": "^2.0.1",
"xstate": "^4.30.6"
},
"jest": {
"verbose": true,
"testTimeout": 10000
}
}