-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 869 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
38
{
"name": "convert-atom-snippets-to-vscode",
"version": "1.0.2",
"description": "Convert atom snippets to vscode format.",
"keywords": [
"snippets",
"convert",
"atom",
"vscode"
],
"author": {
"name": "young",
"homepage": "http://xiayang.me"
},
"repository": {
"type": "git",
"url": "https://github.com/binaryoung/convert-atom-snippets-to-vscode.git"
},
"homepage": "https://github.com/binaryoung/convert-atom-snippets-to-vscode",
"bugs": {
"url": "https://github.com/binaryoung/convert-atom-snippets-to-vscode/issues"
},
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"season": "^6.0.0"
},
"scripts": {
"convertSnippets": "node ./src/command.js",
"test": "ava"
},
"bin": {
"convertSnippets": "./src/command.js"
},
"devDependencies": {
"ava": "^0.19.1"
}
}