-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "grules",
"description": "A carefully curated subset of JavaScript that focuses on harmony.",
"author": "Gürgün Dayıoğlu",
"license": "MIT",
"version": "0.26.1",
"type": "module",
"main": "./src/index.js",
"exports": "./src/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "npm run lint && node --test test/rules/*",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"typescript": "tsc src/*.js --allowJs --declaration --emitDeclarationOnly --skipLibCheck"
},
"dependencies": {
"@eslint/js": "^9.11.1",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prefer-arrow-functions": "^3.4.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0"
},
"peerDependencies": {
"eslint": "^9.11.1",
"prettier": "^3.3.3"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"grules": "file:./",
"typescript": ">=5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gurgunday/grules.git"
}
}