-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "simple-machines",
"version": "0.5.0",
"description": "Simple finite state machine that enables awaiting state changes",
"repository": "[email protected]:smartprocure/simple-machines.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run lint && npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**"
},
"keywords": [
"finite",
"state",
"machine",
"fsm",
"simple",
"await",
"wait"
],
"author": "GovSpend",
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrder": ["^[./]"],
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"importOrderSeparation": true
},
"dependencies": {
"debug": "^4.3.7",
"make-error": "^1.3.6",
"prom-utils": "^0.14.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}