-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 1.36 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
{
"name": "vsts-extensions",
"version": "1.0.0",
"repository": "https://github.com/jycouet/VSTSExtensions.git",
"author": "<[email protected]>",
"license": "MIT",
"scripts": {
"renovateMe": "node -r dotenv/config ./renovateMe/buildtask/src/index.js",
"postinstall": "(cd renovateMe/buildtask && yarn) && (cd apolloEngineSchema/buildtask && yarn) && (cd tagOnAllBuildsDone/buildtask && yarn)",
"package_renovateMe": "tsc && yarn tfx extension create --manifest-globs renovateMe/vss-extension.json --output-path renovateMe/packages --rev-version",
"package_tagOnAllBuildsDone": "tsc && yarn tfx extension create --manifest-globs tagOnAllBuildsDone/vss-extension.json --output-path tagOnAllBuildsDone/packages --rev-version",
"package_apolloEngineSchema": "tsc && yarn tfx extension create --manifest-globs apolloEngineSchema/vss-extension.json --output-path apolloEngineSchema/packages --rev-version",
"update": "npm i -g npm-check-updates && ncu -u -p yarn",
"reset": "git clean -xdf"
},
"devDependencies": {
"@types/node": "17.0.18",
"tfx-cli": "0.10.0",
"ts-node": "10.5.0",
"typescript": "4.5.5"
},
"dependencies": {
"@types/q": "1.5.5",
"dotenv": "^16.0.0",
"es-abstract": "1.19.1",
"stream": "^0.0.2"
},
"engines": {
"node": "22.11.0"
},
"volta": {
"node": "22.11.0",
"yarn": "1.22.22"
}
}