forked from statelyai/xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "@xstate/test",
"version": "1.0.0-alpha.1",
"description": "XState test utilities",
"keywords": [
"state",
"machine",
"statechart",
"scxml",
"state machine",
"model based testing",
"mbt",
"model",
"testing"
],
"author": "David Khourshid <[email protected]>",
"homepage": "https://github.com/statelyai/xstate/tree/main/packages/xstate-test#readme",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"es/**/*.js",
"es/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/statelyai/xstate.git"
},
"scripts": {
"clean": "rm -rf dist lib es tsconfig.tsbuildinfo",
"test": "jest --runInBand",
"build": "tsc && tsc --outDir es --module es2015",
"prepare": "npm run build"
},
"bugs": {
"url": "https://github.com/statelyai/xstate/issues"
},
"peerDependencies": {
"xstate": "^4.38.1"
},
"devDependencies": {
"jest": "^26.6.3",
"lerna-alias": "3.0.3-0",
"strip-ansi": "^5.2.0",
"ts-jest": "^26.5.6",
"typescript": "^4.8.4",
"xstate": "*"
},
"dependencies": {
"@xstate/graph": "^2.0.0-alpha.1"
}
}