-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "eslint-plugin-ordered-imports",
"version": "0.6.0",
"description": "An ESLint rule for sorting and grouping imports.",
"license": "Apache-2.0",
"author": "Kyle Mayes <[email protected]> (https://kylemayes.com)",
"repository": "github:KyleMayes/eslint-plugin-ordered-imports",
"main": "dist/index.js",
"files": [
"dist",
"input.json"
],
"scripts": {
"format": "prettier --write src/*.ts",
"clean": "rimraf dist",
"generate": "ts-json-schema-generator --no-top-ref -f tsconfig.json -t InputOptionsArray -o input.json",
"build": "npm run generate && tsc -p tsconfig.json",
"test": "mocha --require ts-node/register src/rule.spec.ts",
"lint": "prettier --check src/*.ts",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@types/eslint": "~8.2.0",
"@types/node": "~14.14.22",
"eslint": "~8.3.0",
"mocha": "~9.1.3",
"prettier": "~2.5.0",
"rimraf": "~3.0.2",
"ts-json-schema-generator": "~0.97.0",
"ts-node": "~10.4.0",
"typescript": "~4.5.2"
}
}