forked from prettier/prettier-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.63 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
{
"name": "prettier-atom",
"main": "./dist/main.js",
"version": "0.53.0",
"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",
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.6.1",
"atom-text-buffer-point": "^1.0.0",
"atom-text-buffer-range": "^1.0.0",
"babel-runtime": "^6.26.0",
"editorconfig": "^0.15.0",
"editorconfig-to-prettier": "^0.0.6",
"global-modules": "^1.0.0",
"ignore": "^3.3.7",
"lodash": "^4.17.5",
"loophole": "^1.1.0",
"prettier": "1.11.1",
"prettier-eslint": "^8.8.1",
"prettier-stylelint": "^0.4.2",
"read-pkg-up": "^3.0.0",
"yarn-global-modules": "^1.0.1"
},
"devDependencies": {
"all-contributors-cli": "^4.11.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.14.1",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.67.1",
"flow-typed": "^2.3.0",
"husky": "^0.14.3",
"jest": "^22.4.2",
"nps": "^5.8.2",
"opt-cli": "^1.6.0",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2"
},
"scripts": {
"start": "nps",
"test": "nps test",
"precommit": "opt --in pre-commit --exec \"npm start validate\""
},
"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"
}
}
}
}