forked from lcampos/circleci-to-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "circleci-to-vscode",
"version": "0.4.0",
"description": "Download artifacts from circle ci and install them as vscode extensions",
"main": "index.js",
"scripts": {
"clean": "git clean -xfd -e config.json",
"format": "prettier --config .prettierrc --write './*.{js,json}' './utils/*.js'",
"lint": "eslint . --config=.eslintrc.json",
"test": "jest --config ./jest.config.js"
},
"keywords": [
"circleci",
"artifacts",
"download",
"vsix"
],
"author": "Luis Campos Guajardo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lcampos/circleci-to-vscode.git"
},
"bugs": {
"url": "https://github.com/lcampos/circleci-to-vscode/issues"
},
"dependencies": {
"adm-zip": "^0.4.11",
"chalk": "^2.4.1",
"commander": "^2.17.1",
"fs-extra": "^7.0.0",
"shelljs": "0.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "26.1.0",
"eslint": "^5.8.0",
"jest": "26.1.0",
"prettier": "1.15.3",
"regenerator-runtime": "^0.13.1"
},
"engines": {
"node": ">=8.9.4"
},
"bin": {
"ctv": "./index.js"
}
}