-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.52 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.52 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
35
36
37
38
39
40
{
"name": "@msinternal/bot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "Microsoft Corporation",
"license": "MIT",
"private": true,
"scripts": {
"bump": "npm run bump:prod && npm run 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 ."
},
"pinDependencies": {
"botbuilder": [
"^4.23.2",
"botbuilder has a bad @latest pointing to 4.17.0-blobs1"
]
},
"overrides": {
"hpack.js": {
"readable-stream": {
"string_decoder": "^1.2.0"
}
},
"restify": {
"find-my-way": "^8.2.2",
"send": "^0.19.1"
}
},
"dependencies": {
"botbuilder": "^4.23.2",
"dotenv": "^17.2.1",
"restify": "^11.1.0"
},
"devDependencies": {
"node-dev": "^8.0.0"
}
}