-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
{
"name": "formatters-python",
"version": "1.2.1",
"main": "./src/formatters.js",
"license": "MIT",
"author": "Utkarsh Gupta <[email protected]>",
"repository": "https://github.com/utkarshgupta137/atom-formatters-python",
"description": "Format Python code using autopep8, black, isort, or yapf (or all)",
"keywords": [
"apm",
"atom",
"autopep8",
"beautifier",
"beautify",
"black",
"fmt",
"format",
"formatter",
"formatters",
"isort",
"pep8",
"prettify",
"pretty",
"pycodestyle",
"pydocstyle",
"python",
"yapf"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"activationHooks": [
"core:loaded-shell-environment"
],
"dependencies": {
"find-up": "^5.0.0",
"is-valid-path": "^0.1.1",
"lodash": "^4.17.21",
"untildify": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"standard-version": "^9.3.0"
},
"consumedServices": {
"busy-signal": {
"versions": {
"^1.0.0": "consumeBusySignal"
}
},
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}