forked from prettier/plugin-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 837 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 837 Bytes
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
{
"name": "@prettier/plugin-php",
"version": "0.6.0",
"description": "Prettier PHP Plugin",
"repository": "prettier/prettier-php",
"author": "Lucas Azzola <@azz>",
"license": "MIT",
"main": "src",
"files": [
"src"
],
"dependencies": {
"mem": "^3.0.1",
"php-parser": "3.0.0-alpha.3"
},
"devDependencies": {
"eslint": "4.1.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jest": "21.5.0",
"eslint-plugin-prettier": "2.4.0",
"jest": "21.1.0",
"jest-runner-eslint": "0.3.0",
"prettier": "prettier/prettier"
},
"peerDependencies": {
"prettier": "^1.12.0"
},
"scripts": {
"test": "jest",
"prettier": "prettier --plugin=. --parser=php"
},
"jest": {
"projects": [
"<rootDir>/jest.*.config.js"
]
}
}