This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
108 lines (108 loc) · 2.69 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
{
"name": "prettier-atom",
"main": "./dist/main.js",
"version": "0.60.1",
"description": "Atom plugin for formatting JavaScript using prettier with (optional) prettier-eslint integration",
"keywords": [
"atom",
"javascript",
"prettier",
"prettier-eslint",
"eslint",
"formatter"
],
"repository": "https://github.com/prettier/prettier-atom",
"homepage": "https://github.com/prettier/prettier-atom",
"bugs": {
"url": "https://github.com/prettier/prettier-atom/issues"
},
"license": "MIT",
"activationHooks": [
"core:loaded-shell-environment"
],
"dependencies": {
"@babel/runtime": "^7.16.5",
"@lewisl9029/prettier-eslint": "^9.0.1",
"atom-linter": "^10.0.0",
"atom-package-deps": "^8.0.0",
"atom-text-buffer-point": "^1.0.0",
"atom-text-buffer-range": "^1.0.0",
"execa": "^4.1.0",
"global-modules": "^2.0.0",
"ignore": "^5.1.9",
"lodash": "^4.17.21",
"loophole": "^1.1.0",
"prettier": "2.5.1",
"prettier-stylelint": "^0.4.2",
"read-pkg-up": "^7.0.1",
"yarn-global-modules": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-transform-flow-strip-types": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^7.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.167.1",
"flow-typed": "^3.5.0",
"jest": "^25.5.4",
"nps": "^5.10.0",
"opt-cli": "^1.6.0",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"rimraf": "^3.0.2"
},
"scripts": {
"start": "nps",
"test": "nps test"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"collectCoverageFrom": [
"src/**.js"
],
"globals": {
"atom": true
},
"notify": false,
"resetMocks": true,
"resetModules": true,
"roots": [
"src"
],
"testEnvironment": "node"
},
"package-deps": [
"linter:2.0.0"
],
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"linter-indie": {
"versions": {
"2.0.0": "consumeIndie"
}
}
}
}