This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "php-cs-fixer",
"license": "MIT",
"publisher": "jradtilbrook",
"author": "jradtilbrook",
"icon": "logo.png",
"homepage": "https://github.com/jradtilbrook/vscode-php-cs-fixer",
"displayName": "PHP CS Fixer",
"description": "Fix your PHP code with php-cs-fixer",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/jradtilbrook/vscode-php-cs-fixer.git"
},
"badges": [{
"description": "Tests",
"href": "https://github.com/jradtilbrook/vscode-php-cs-fixer/actions/workflows/test.yaml",
"url": "https://img.shields.io/github/workflow/status/jradtilbrook/vscode-php-cs-fixer/Tests"
}],
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:php"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "yarn run webpack-dev",
"package": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/diff": "^5.0.1",
"@types/glob": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "^16.0.0",
"@types/vscode": "^1.54.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.28.0",
"diff": "^5.0.0",
"eslint": "^7.31.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"vsce": "^1.96.1",
"vscode-test": "^1.5.2",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.2"
}
}