-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "eslint-plugin-import-splitnsort",
"version": "1.0.7",
"description": "ESLInt plugin to enforce idiosyncratic TypeScript import style and ordering, deprecating VSCode plugin import-splitnsort",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"bugs": {
"url": "https://github.com/mflorence99/eslint-plugin-import-splitnsort/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mflorence99/eslint-plugin-import-splitnsort.git"
},
"license": "MIT",
"author": "Mark Florence",
"main": "dist/index.js",
"files": [
"dist/*.js",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.src.json",
"clean:caches": "jest --clearCache",
"clean:deps": "rm -rf node_modules && rm -f package-lock.json && npm install",
"test": "jest --runInBand --coverage",
"test:only": "jest --coverage=false -- %1",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/eslint": "^7.2.0",
"@types/jest": "^26",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^7",
"eslint-config-mflorence99": "latest",
"eslint-plugin-import-splitnsort": "latest",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
}