-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.2 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
{
"name": "js-import-sort",
"author": "Amit Shah",
"version": "2.0.3",
"description": "A jS Codemode to sort/organise imports",
"repository": "https://github.com/Amwam/js-import-sort",
"main": "./index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"prettier": "prettier --semi --write ./*.js ./lib/*.js",
"prettier_check": "prettier --semi --check ./*.js ./lib/*.js"
},
"bin": {
"js-import-sort": "./cli.js"
},
"dependencies": {
"find-root": "^1.1.0",
"jscodeshift": "^0.6.4",
"nomnom": "^1.8.1",
"prettier": "^1.18.2"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-jest": "^22.17.0",
"jest": "^24.9.0"
},
"jest": {
"collectCoverage": true
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"jest"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
]
}
},
"license": "MIT"
}