-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "xstate-awaitable-send",
"version": "0.0.10",
"description": "Fire an event into an XState `Machine` and then wait for it to stop transitioningg.",
"keywords": [
"xstate",
"wait",
"async",
"services",
"invoke",
"state"
],
"author": "Seb Insua <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": "12.x"
},
"main": "./lib/cjs/index.js",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./package.json": "./package.json",
".pnp.cjs": ".pnp.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebinsua/xstate-send-wait.git"
},
"bugs": {
"url": "https://github.com/sebinsua/xstate-send-wait/issues"
},
"homepage": "https://github.com/sebinsua/xstate-send-wait#readme",
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow yarn",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"test": "is-ci-cli test:ci test:local",
"test:local": "jest --watch",
"test:ci": "jest --bail",
"build": "tsc -p tsconfig.build-esm.json && tsc -p tsconfig.build-cjs.json",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.4.14",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"is-ci-cli": "^2.2.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"xstate": "^4.23.1"
},
"peerDependencies": {
"xstate": "^4.0.0"
}
}