-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 2.05 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
{
"name": "php-import-checker",
"displayName": "PHP import checker",
"description": "Know when you are importing a class and is not using it in the file, easy and fast, inspired by PHPStorm",
"version": "0.11.0",
"publisher": "marabesi",
"browser": "./out/src/extension.js",
"icon": "arrows.png",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"repository": "https://github.com/marabesi/php-import-checker.git",
"activationEvents": [
"onCommand:extension.php-import-checker",
"onLanguage:php"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.php-import-checker",
"title": "Check PHP import"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test:integration": "node ./node_modules/vscode/bin/test --disable-extensions",
"test:unit": "mocha -r ts-node/register mocha/unit/**/**.test.ts",
"test:coverage": "nyc --reporter=text mocha -r ts-node/register mocha/unit/**/**.test.ts",
"test:coveralls:coverage": "nyc --reporter=text-lcov mocha -r ts-node/register mocha/unit/**/**.test.ts > lcov.info",
"coveralls": "npm run test:coveralls:coverage && coveralls --verbose < lcov.info",
"test:all": "npm run test:unit && npm run test:integration",
"package": "vsce package"
},
"devDependencies": {
"@types/lodash": "^4.17.14",
"@types/mocha": "^10.0.7",
"@types/node": "^22.10.5",
"@types/sinon": "^17.0.3",
"coveralls": "^3.1.1",
"mocha": "^10.7.3",
"nyc": "^15.1.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.7.3",
"vsce": "^2.15.0",
"vscode": "^1.1.37"
},
"dependencies": {
"hex-rgb": "^4.3.0",
"lodash": "^4.17.21",
"php-parser": "^3.2.2"
}
}