-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "atom-import-sort",
"private": true,
"version": "6.0.0",
"description": "Sort ES2015 (aka ES6) imports. Manually – or automatically when you save your JavaSript or TypeScript files.",
"keywords": [
"es6",
"eslint",
"import-sort",
"import",
"sort",
"typescript"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "tsc -b .",
"build": "tsc -b .",
"build:watch": "tsc -b . -w",
"test": "mocha --require ts-node/register --recursive \"test/**/*.ts\"",
"test:watch": "mocha -w --require ts-node/register --recursive \"test/**/*.ts\"",
"lint": "eslint --ext ts src"
},
"author": "Renke Grunwald <[email protected]> (https://github.com/renke)",
"repository": "renke/import-sort",
"license": "ISC",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"devDependencies": {
"@types/atom": "^1.31.0",
"@types/chai": "^4.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.20",
"@typescript-eslint/eslint-plugin": "^1.2.0",
"chai": "^4.0.2",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"mocha": "^5.2.0",
"ts-node": "^8.0.2",
"typescript": "^3.2.4"
},
"dependencies": {
"import-sort": "^6.0.0",
"import-sort-config": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-eslint": "^6.0.0",
"loophole": "^1.1.0"
}
}