forked from rlaffers/eslint-plugin-xstate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "eslint-plugin-xstate",
"version": "0.0.0-semantically-released",
"description": "ESLint rules for XState",
"keywords": ["eslint", "eslintplugin", "eslint-plugin"],
"author": "Richard Laffers",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint lib/",
"format": "prettier --write README.md {lib,docs,tests}/**/*.{js,md}",
"format:check": "prettier --check README.md {lib,docs,tests}/**/*.{js,md}",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"lodash.upperfirst": "^4.3.1",
"sanctuary": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^29.0.0",
"prettier": "^2.6.2",
"semantic-release": "^21.0.7"
},
"peerDependencies": {
"eslint": "^7.1.0||^8.17.0"
},
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rlaffers/eslint-plugin-xstate"
},
"homepage": "https://github.com/rlaffers/eslint-plugin-xstate",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "18.17.0"
}
}