forked from prettier/prettier-atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.16 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
{
"name": "prettier-atom",
"main": "./dist/main.js",
"version": "0.32.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",
"engines": {
"atom": ">=0.183.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^10.0.0",
"editorconfig": "^0.13.2",
"ignore": "^3.3.3",
"lodash": "^4.17.4",
"loophole": "^1.1.0",
"prettier": "^1.4.1",
"prettier-eslint": "^6.2.3",
"read-pkg": "^2.0.0"
},
"devDependencies": {
"all-contributors-cli": "^4.3.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.2.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^20.0.3",
"flow-bin": "^0.47.0",
"flow-typed": "^2.1.2",
"husky": "^0.13.4",
"jest-cli": "^20.0.4",
"nps": "^5.3.1",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^4.0.2",
"rimraf": "^2.6.1"
},
"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"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}