-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
66
67
68
69
{
"name": "eslint-plugin-ng-module-sort",
"version": "1.3.1",
"description": "Sort Angular and NestJS module imports, declarations, exports, controls, etc.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"angular",
"nestjs"
],
"author": "Daniel Lazar",
"repository": {
"type": "git",
"url": "https://github.com/ducktordanny/eslint-plugin-ng-module-sort"
},
"main": "./dist/lib/index.js",
"exports": "./dist/lib/index.js",
"files": [
"dist/lib",
"CHANGELOG.md"
],
"scripts": {
"dev": "nodemon -e js,ts --watch lib --watch tests --exec 'yarn build'",
"build": "rm -rf ./dist && tsc",
"build:test": "yarn build; yarn test",
"build:lint": "yarn build; yarn lint",
"test": "mocha tests --recursive ./dist/tests/",
"lint": "eslint .",
"lint:eslint-docs": "update:eslint-docs --check",
"format": "pretty-quick",
"format:all": "prettier . --write",
"update:eslint-docs": "eslint-doc-generator",
"publish": "yarn build; npm publish",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"@typescript-eslint/parser": "^5.57.1",
"@typescript-eslint/types": "^5.57.1",
"@typescript-eslint/utils": "^5.57.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-doc-generator": "^1.0.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"mocha": "^10.0.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "3.3.2",
"pretty-quick": "^4.0.0",
"typescript": "^5.0.4"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "MIT"
}