-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 934 Bytes
/
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
{
"name": "eslint-plugin-bpmn-io",
"version": "2.1.0",
"description": "Shared lint rules for bpmn.io projects",
"type": "module",
"exports": {
".": "./index.js",
"./configs/*.js": "./configs/*.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bpmn-io/eslint-plugin-bpmn-io.git"
},
"scripts": {
"all": "npm test",
"test": "npm test -w test"
},
"keywords": [
"eslint",
"lint",
"rules",
"bpmn.io"
],
"author": "Nico Rehwaldt <[email protected]>",
"license": "MIT",
"dependencies": {
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0"
},
"devDependencies": {
"eslint": "^9.11.1",
"min-dash": "^4.2.1"
},
"peerDependencies": {
"eslint": "^9"
},
"files": [
"configs",
"index.js"
],
"workspaces": [
"test"
]
}