This repository has been archived by the owner on Jul 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "rikimaru",
"displayName": "rikimaru",
"description": "Code searcher for `cosmos` from within VS Code",
"version": "0.0.2",
"publisher": "sidmishraw",
"engines": {
"vscode": "^1.23.0"
},
"repository": {
"url": "https://github.com/sidmishraw/rikimaru"
},
"categories": ["Other"],
"activationEvents": ["onCommand:rikimaru.search"],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "rikimaru.search",
"title": "rikimaru: Search cosmos with rikimaru :)"
}
],
"configuration": [
{
"type": "object",
"title": "rikimaru configurations",
"properties": {
"rikimaru.user.github.name": {
"type": "string",
"description": "Your GitHub username goes here!",
"default": "github-user-name-here"
},
"rikimaru.user.github.personal-token": {
"type": "string",
"description": "Your Github personal API token",
"default": "github-API-personal-token"
}
}
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"start": "coffee -cwt -o ./src ./src/cfs"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coffeelint": "^2.0.7",
"coffeescript": "^2.0.2",
"eslint": "^4.6.1",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"dependencies": {
"async": "^2.6.0",
"lodash": "^4.17.4",
"request": "^2.83.0",
"electron": "^1.7.9"
},
"extensionDependencies": [],
"license": "MIT"
}