forked from gabbersepp/cypress-fixture-intellisense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "cypress-fixture-intellisense",
"displayName": "Cypress Fixture-IntelliSense",
"description": "This extension will support your cy.fixture() / cy.route(..., \"fixture:\") command by providing intellisense for existing fixtures",
"version": "1.2.0",
"publisher": "JosefBiehler",
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"repository": "https://github.com/gabbersepp/cypress-fixture-intellisense",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run copy-test-files",
"test": "node ./out/test/runTest.js",
"copy-test-files": "node lib/copy.js"
},
"dependencies": {
"glob": "^7.1.6"
},
"devDependencies": {
"@types/glob": "7.1.3",
"@types/mocha": "8.0.4",
"@types/node": "14.14.7",
"@types/vscode": "1.51.0",
"mocha": "8.2.1",
"ncp": "2.0.0",
"tslint": "6.1.3",
"typescript": "4.0.5",
"vscode-test": "1.4.1"
}
}