-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 976 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
39
{
"name": "vscode-extensions-tools",
"version": "1.0.0",
"description": "Utility to export and install vscode extensions via text file",
"main": "index.js",
"dependencies": {
"chalk": "^2.1.0",
"yargs": "^9.0.1"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2"
},
"scripts": {
"pretty": "prettier --write --print-width 110 --single-quote --trailing-comma --tab-width 4 \"src/**/*.js\"",
"precommit": "lint-staged",
"help": "node vscode_extensions.js -h"
},
"lint-staged": {
"*.js": [
"npm run pretty",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmnegatives/vscode_tools.git"
},
"keywords": [
"vscode"
],
"author": "Imran Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmnegatives/vscode_tools/issues"
},
"homepage": "https://github.com/rmnegatives/vscode_tools#readme"
}