forked from foneandrew/ruby-spec-runner
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.64 KB
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
{
"name": "ruby-spec-runner",
"displayName": "Ruby Spec Runner",
"description": "Run Ruby specs and tests from VS Code",
"version": "4.0.0",
"packageManager": "yarn@4.9.4",
"repository": {
"type": "git",
"url": "https://github.com/brandonapollo/ruby-spec-runner.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:ruby"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [],
"configuration": {},
"languages": [
{
"id": "ruby",
"extensions": [
".rb"
]
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir dist",
"watch-tests": "tsc -p . -w --outDir dist",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./dist/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "16.x",
"@types/sinon": "^17.0.0",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^8.28.0",
"mocha": "^10.4.0",
"node-loader": "^2.0.0",
"sinon": "^17.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"tmp": "^0.2.1"
}
}