forked from jfrog/jfrog-azure-devops-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1002 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
{
"name": "artifactory-vsts-extension",
"version": "1.0.0",
"author": "JFrog",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"tfx-cli": "0.6.4"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@types/q": "^1.5.4",
"prettier": "1.19.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5",
"ts-node": "^9.0.0"
},
"scripts": {
"format": "prettier --write \"**/{*.ts,*.js,package.json}\"",
"preinstall": "cd buildScripts && npm i --no-fund",
"install": "node buildScripts/build.js",
"postinstall": "npm run compile",
"create": "tfx extension create",
"test": "npm i --no-fund && npm t --prefix=tests",
"publish-private": "npm i --no-fund && bash buildScripts/publish-private.sh",
"compile": "npx tsc -p ./",
"lint": "tslint -p tsconfig.json"
}
}