-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "@2toad/fluent-state",
"version": "2.0.1",
"description": "A fluent JavaScript State Machine with full TypeScript support",
"homepage": "https://github.com/2Toad/fluent-state",
"author": "2Toad",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "npx rimraf dist",
"build": "npm run clean && npx tsc",
"local": "npm run clean && nodemon src/index.ts",
"test:watch": "npm run test -- --watch",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"prepublishOnly": "npm run lint && npm test && npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/2Toad/fluent-state.git"
},
"keywords": [
"state machine"
],
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/chai": "^4.3.19",
"@types/chai-spies": "^1.0.6",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-security": "^3.0.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"chai": "^4.5.0",
"chai-spies": "^1.1.0",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"overrides": {
"inflight": "^2.0.0",
"glob": "^9.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*": "prettier --write"
}
}