-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 2.66 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "javascript-refactor",
"main": "./lib/atom-javascript-refactor",
"version": "0.7.1",
"description": "JavaScript refactoring support for Atom",
"keywords": [
"refactor",
"rename",
"move",
"javascript",
"ide"
],
"activationCommands": {
"atom-workspace": "atom-javascript-refactor:refactor"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/jurassix/atom-javascript-refactor.git"
},
"author": "Clint Ayres <[email protected]>",
"contributors": [
"Andrew Hutchings <[email protected]> (https://andrewhutchings.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jurassix/atom-javascript-refactor/issues"
},
"homepage": "https://github.com/jurassix/atom-javascript-refactor#readme",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"fs-plus": "^2.9.1",
"jscodeshift": "^0.3.20",
"react-for-atom": "^15.0.2-1",
"redux": "^3.5.2",
"refactoring-codemods": "0.3.4"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.11",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.20.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"flow-bin": "^0.47.0",
"jest": "^20.0.0"
},
"scripts": {
"test": "npm run test:flow && npm run test:lint && npm run test:unit",
"test:flow": "flow check",
"test:lint": "eslint .",
"test:unit": "jest --coverage"
},
"babel": {
"plugins": [
"transform-decorators-legacy"
],
"presets": [
"es2015",
"stage-0",
"react"
],
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"eslintConfig": {
"env": {
"browser": true,
"jest": true
},
"extends": [
"airbnb",
"plugin:flowtype/recommended"
],
"parser": "babel-eslint",
"globals": {
"atom": false
},
"plugins": [
"babel",
"flowtype"
],
"rules": {
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".js"
]
}
],
"react/sort-comp": "off"
},
"settings": {
"import/core-modules": [
"atom"
]
}
}
}