-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "machina-typescript",
"version": "0.0.2",
"description": "Typesafe wrapper around https://github.com/ifandelse/machina.js",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"_test-tsc": "tsc --project tsconfig-test.json --noEmit",
"test": "jest && pnpm run _test-tsc",
"test-without-compatibility": "jest --testPathIgnorePatterns \".+-compatibility.ts$\" --coverage=false && pnpm run _test-tsc",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MartinRamm/typescript-machina.git"
},
"keywords": [
"typescript",
"fsm",
"finite-state-machine",
"machina",
"machina.js",
"states",
"events"
],
"author": "MartinRamm",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/MartinRamm/typescript-machina/issues"
},
"homepage": "https://github.com/MartinRamm/typescript-machina#readme",
"peerDependencies": {
"machina": ">=4.0.0",
"typescript": ">=4.7.2"
},
"devDependencies": {
"@jest/globals": "^29.4.2",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"expect-type": "^0.15.0",
"jest": "^29.4.2",
"machina": "^4.0.2",
"prettier": "^2.8.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}