-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "import-helper",
"main": "./lib/import-helper",
"version": "0.1.2",
"description": "A utility that helps you adding es6 imports in atom",
"keywords": [
"import",
"helper",
"es6",
"auto",
"complete",
"autocomplete",
"suggest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jmacedoit/atom-import-helper.git"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"babel-cli": "6.26.0",
"babel-generator": "6.26.0",
"babel-preset-es2017-node7": "0.5.2",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"bluebird": "3.5.1",
"commander": "2.11.0",
"lodash": "4.17.4",
"md5": "2.2.1",
"react": "16.0.0",
"react-dom": "16.0.0",
"readdirp": "2.1.0",
"recompose": "0.26.0"
},
"importSort": {
".js, .jsx, .es6, .es": {
"parser": "babylon",
"style": "jmacedo"
}
},
"devDependencies": {
"eslint": "3.10.2",
"eslint-config-react": "1.1.7",
"eslint-config-seegno": "8.0.0",
"eslint-plugin-flowtype": "2.25.0",
"eslint-plugin-react": "7.4.0",
"import-sort-style-jmacedo": "git+ssh://[email protected]:jmacedoit/import-sort-style-jmacedo.git"
}
}