This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.69 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
51
52
53
54
{
"name": "gitlab-artifact-integration",
"version": "1.0.0",
"description": "gitLab artifiact integration",
"main": "index.js",
"scripts": {
"test": "mocha tests/*.ts --require ts-node/register",
"clean-dist": "rimraf dist",
"copy": "npm run clean-dist && copyfiles \"./tasks/**/!(*.ts|*.js.map|package-lock.json)\" dist && copyfiles vss-extension.json LICENSE *.md dist && copyfiles images/** dist",
"debugtest": "mocha tests/_suite.ts",
"debug-node": "node ./scripts/share",
"share": "npm run copy && node ./scripts/share --beta",
"init": "npm install && pushd \"./tasks/DownloadRepo/DownloadRepoV1\" && npm install && popd",
"dedupe": "pushd \"./tasks/DownloadRepo/DownloadRepoV1\" && npm dedupe && npm prune --production && popd",
"compile": "tsc && tslint --project .",
"build": "npm run compile && npm run copy"
},
"repository": {
"type": "git",
"url": "https://github.com/onlyutkarsh/gitlab-integration.git"
},
"keywords": [
"vsts",
"gitlab"
],
"author": "utkarsh",
"license": "ISC",
"dependencies": {
"path": "^0.12.7"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/fs-extra": "^5.0.5",
"@types/glob": "^7.1.1",
"@types/node": "^11.9.4",
"@types/q": "^1.5.1",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"assert": "^1.4.1",
"chalk": "~2.4.2",
"copyfiles": "^2.1.0",
"dotenv": "^6.2.0",
"fast-json-patch": "~2.0.7",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.1",
"yargs": "~13.2.1"
}
}