-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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
{
"name": "rails-routes",
"displayName": "Rails Routes",
"description": "Definition and Completion provider for Rails Routes.",
"version": "0.6.2",
"publisher": "aki77",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/aki77/vscode-rails-routes.git"
},
"bugs": {
"url": "https://github.com/aki77/vscode-rails-routes/issues"
},
"license": "MIT",
"activationEvents": [
"onLanguage:ruby",
"onLanguage:haml",
"onLanguage:erb",
"onLanguage:slim"
],
"main": "./out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Rails Routes",
"properties": {
"railsRoutes.railsCommand": {
"type": "string",
"enum": [
"bin/rails",
"bundle exec rails"
],
"default": "bundle exec rails",
"description": "Rails command"
}
}
},
"commands": [
{
"command": "railsRoutes.insert",
"category": "Rails Routes",
"title": "Insert url helper"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/inflection": "^1.5.28",
"@types/lodash.debounce": "^4.0.6",
"@types/mocha": "^9.0.0",
"@types/node": "^14",
"@types/vscode": "^1.36.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.5.0",
"typescript": "^4.1.3",
"vscode-test": "^1.0.2"
},
"dependencies": {
"execa": "^5.0.0",
"inflection": "^1.12.0",
"lodash.debounce": "^4.0.8"
}
}