-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.66 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
{
"name": "@irrelon/fsm",
"version": "2.1.0",
"author": "Irrelon Software Limited <[email protected]>",
"description": "Irrelon Finite State Machine",
"contributors": [
{
"name": "Rob Evans",
"email": "[email protected]"
}
],
"type": "module",
"main": "dist/cjs/FiniteStateMachine.js",
"module": "dist/esm/FiniteStateMachine.js",
"types": "dist/esm/FiniteStateMachine.d.ts",
"scripts": {
"build": "npm run build-esm && npm run build-cjs",
"build-esm": "(npm run compile-esm 2>/dev/null || exit 0) && sh ./fixup-esm.sh && npm run fix-paths-esm",
"build-cjs": "(npm run compile-cjs 2>/dev/null || exit 0) && sh ./fixup-cjs.sh && npm run fix-paths-cjs",
"compile": "npm run compile-esm && npm run compile-cjs",
"compile-esm": "tsc -p tsconfig-esm.json",
"compile-cjs": "tsc -p tsconfig-cjs.json",
"fix-paths": "npm run fix-paths-esm && npm run fix-paths-cjs",
"fix-paths-esm": "npx @irrelon/fix-paths -p ./tsconfig-esm.json -i \"**/*.js, **/*.ts\" --write",
"fix-paths-cjs": "npx @irrelon/fix-paths -p ./tsconfig-cjs.json -i \"**/*.js, **/*.ts\" --write",
"build-esm-watch": "tsc -p tsconfig-esm.json --watch",
"build-cjs-watch": "tsc -p tsconfig-cjs.json --watch",
"fix-paths-watch": "npx @irrelon/fix-paths --write --watch",
"generate-exports": "node update-indexes.cjs",
"test": "NODE_ENV=test jest",
"test-watch": "NODE_OPTIONS=--experimental-vm-modules jest --testMatch \"**/*.test.(js|ts)\" --watchAll"
},
"dependencies": {
"@irrelon/emitter": "^5.0.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"morgan": "^1.10.0",
"mqtt": "^4.3.7",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.4",
"@types/websocket": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
"chokidar": "^3.5.3",
"eslint": "8.0.1",
"eslint-config-next": "^13.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jest-dom": "^3.9.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-tree-shaking": "^1.10.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.5",
"minimatch": "^7.4.2",
"prettier": "^2.6.2",
"stacktrace-js": "^2.0.2",
"typescript": "^4.9.5"
}
}