-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.45 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.45 KB
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
{
"name": "@msinternal/web",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "Microsoft Corporation",
"license": "MIT",
"private": true,
"scripts": {
"bump": "vg bump prod && vg bump dev && (npm audit fix || exit 0)",
"bump:dev": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // []) as $L | (.devDependencies // {}) | to_entries | map(select(.key as $K | $L | contains([$K]) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
"bump:prod": "PACKAGES_TO_BUMP=$(cat package.json | jq -r '(.pinDependencies // {}) as $P | (.localPeerDependencies // []) as $L | (.dependencies // {}) | to_entries | map(select(.key as $K | $L | contains([$K]) | not)) | map(.key + \"@\" + ($P[.key] // [\"latest\"])[0]) | join(\" \")') && [ ! -z \"$PACKAGES_TO_BUMP\" ] && npm install $PACKAGES_TO_BUMP || true",
"start": "node-dev --no-notify --respawn .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pinDependencies": {},
"overrides": {
"restify": {
"find-my-way": "^8.2.2",
"send": "^0.19.1"
}
},
"dependencies": {
"@azure/storage-blob": "^12.28.0",
"dotenv": "^17.2.1",
"http-proxy": "^1.18.1",
"math-random": "^2.0.1",
"restify": "^11.1.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"node-dev": "^8.0.0"
}
}