-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 944 Bytes
/
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
{
"name": "js-isort",
"version": "3.5.0",
"description": "Group and sort JS imports.",
"keywords": [
"js",
"es2015",
"import",
"sort"
],
"license": "MIT",
"author": "Cedric McDougal",
"repository": {
"type": "git",
"url": "https://github.com/mcdougal/js-isort.git"
},
"main": "src/js-isort.js",
"bin": "src/js-isort-cli.js",
"scripts": {
"check": "npx npm-check --skip-unused",
"lint": "eslint src/ tests/",
"test": "jest",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1"
},
"dependencies": {
"@babel/generator": "^7.8.0",
"@babel/parser": "^7.8.0",
"commander": "^4.1.0"
}
}