-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "@jfrog/jfrog-azure-devops-extension",
"version": "1.0.0",
"author": "JFrog",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.7.0",
"@types/q": "^1.5.6",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"tfx-cli": "^0.16.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"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 t --prefix=tests",
"publish-private": "npm i --no-fund && bash buildScripts/publish-private.sh",
"compile": "npx tsc -p ./",
"lint": "npx eslint . --ext .ts,.tsx,.js"
}
}