-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.94 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
{
"name": "@smartive/xstate-test-toolbox",
"version": "0.0.0-development",
"description": "This package contains the helper `createTestPlans` which can be used with xstate and @xstate/test.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"lint": "npm-run-all lint:*",
"lint:ts": "eslint './src/**/*.{ts,tsx}'",
"lint:prettier": "prettier --list-different \"src/**/*.ts{,x}\"",
"test": "npm run lint"
},
"engines": {
"node": "^22.0.0",
"npm": "^10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartive/xstate-test-toolbox.git"
},
"keywords": [
"xstate",
"xstate-test",
"test",
"helpers",
"workbox",
"toolbox",
"utils"
],
"author": "smartive AG <[email protected]>",
"license": "MIT",
"release": {
"branches": [
"main"
],
"repositoryUrl": "https://github.com/smartive/xstate-test-toolbox.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"bugs": {
"url": "https://github.com/smartive/xstate-test-toolbox/issues"
},
"homepage": "https://github.com/smartive/xstate-test-toolbox#readme",
"dependencies": {
"tslib": "^2.0.1"
},
"peerDependencies": {
"xstate": "^4.13.0",
"@xstate/test": "^0.4.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.2.1",
"npm-run-all2": "^7.0.0",
"typescript": "^4.1.3",
"xstate": "^4.13.0",
"@xstate/test": "^0.4.1"
}
}