-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "react-snippets",
"version": "1.0.1",
"description": "Snippets for React.js--only for Javascript",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"keywords": [
"vscode",
"snippets",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/dexter-69/vscode-react-snippets.git"
},
"author": "dexter-69",
"license": "MIT",
"contributes": {
"snippets": [{
"language": "javascript",
"path": "./snippets.json"
}, {
"language": "javascriptreact",
"path": "./snippets.json"
}]
},
"activationEvents": [
"onCommand:extension.snippetSearch"
],
"extensionKind": "ui",
"icon": "images/logo.png",
"categories": [
"Snippets"
],
"publisher": "balraj-99",
"engines": {
"vscode": "^1.34.0"
},
"devDependencies": {
"@types/node": "^8.10.25",
"@types/vscode": "^1.34.0",
"tslint": "^5.16.0",
"typescript": "^3.5.1"
}
}