-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1018 Bytes
/
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
{
"name": "waves-ride-snippets",
"displayName": "Waves Ride Snippets",
"version": "1.0.6",
"description": "A VS Code snippet extension for the Waves Ride language",
"publisher": "wavesafrica",
"author": "Kelvin Omereshone",
"scripts": {
"build": "vsce package -o waves-ride-snippets-$npm_package_version.vsix",
"install": "yarn build && code --install-extension waves-ride-snippets-$npm_package_version.vsix"
},
"icon": "images/ride-snippet.png",
"repository": {
"type": "git",
"url": "https://github.com/Wavesafrica/waves-ride-snippets.git"
},
"engines": {
"vscode": "^1.0.0"
},
"keywords": [
"Ride",
"Waves",
"Snippets"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Wavesafrica/waves-ride-snippets/issues"
},
"homepage": "https://github.com/Wavesafrica/waves-ride-snippets#readme",
"contributes": {
"snippets": [{
"language": "ride",
"path": "./snippets/ride.json"
}]
},
"categories": ["Snippets"]
}