This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.8 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
{
"name": "vscode-behave-test-adapter",
"displayName": "Behave Test Explorer",
"description": "Run your Behave tests in the Sidebar of Visual Studio Code",
"icon": "img/icon.png",
"author": "Younes el Barnoussi <[email protected]>",
"publisher": "YouneselBarnoussi",
"version": "1.1.1",
"license": "MIT",
"homepage": "https://github.com/YouneselBarnoussi/vscode-BDD-Python-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/YouneselBarnoussi/vscode-BDD-Python-test-adapter.git"
},
"bugs": {
"url": "https://github.com/YouneselBarnoussi/vscode-BDD-Python-test-adapter/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"python",
"behave",
"BDD",
"Behave Driven Development",
"debug"
],
"main": "out/main.js",
"scripts": {
"clean": "rimraf out *.vsix",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"rebuild": "npm run clean && npm run build",
"package": "vsce package",
"publish": "vsce publish",
"pretest": "copyfiles -u 1 ./src/test/suite/support/features/print.feature ./out && copyfiles -u 1 ./src/test/suite/support/.vscode/settings.json ./out && npm run build",
"test": "node ./out/test/runTests.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@types/graceful-fs": "^4.1.3",
"iconv": "^3.0.0",
"iconv-lite": "^0.5.1",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/vscode": "~1.59.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vscode/test-electron": "^2.2.1",
"@vscode/vsce": "^2.16.0",
"copyfiles": "^2.4.1",
"eslint": "^8.31.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"glob": "^8.0.3",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"engines": {
"vscode": "^1.59.0"
},
"activationEvents": [
"workspaceContains:**/*.feature"
],
"extensionDependencies": [
"ms-python.python"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Test explorer for Python Behave Driven Development",
"properties": {
"behaveTestAdapter.featuresFolderPath": {
"type": "string",
"default": "",
"description": "The path of the features folder (default: ${workspaceFolder}/features)"
},
"behaveTestAdapter.enableDefintionProvider": {
"type": "boolean",
"default": "",
"description": "Whether definition provider will be enabled or not"
}
}
}
}
}