-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.07 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.07 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@msinternal/botframework-webchat-cldr-data",
"version": "0.0.0-0",
"adoptedVersion": "36.0.0",
"engines": {
"node": ">= 12"
},
"private": true,
"keywords": [
"unicode",
"CLDR",
"JSON",
"data"
],
"description": "Npm module for Unicode CLDR JSON data",
"licenses": [
{
"type": "MIT"
}
],
"author": {
"name": "Rafael Xavier de Souza",
"email": "rxaviers@gmail.com",
"url": "http://rafael.xavier.blog.br"
},
"contributors": [
"Microsoft Corporation"
],
"module": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js"
}
},
"type": "module",
"files": [
"src/index.js",
"src/install.mjs",
"src/patch.mjs",
"urls.json"
],
"scripts": {
"build": "npm run --if-present build:pre && npm run build:run && npm run --if-present build:post",
"build:pre": "npm run build:pre:local-dependencies && npm run build:pre:watch",
"build:pre:local-dependencies": "../../../scripts/npm/build-local-dependencies.sh",
"build:pre:watch": "../../../scripts/npm/build-watch.sh",
"build:run": "node ./src/install.mjs && node ./src/patch.mjs && touch ./package.json",
"bump": "npm run bump:dev && npm run bump:prod && (npm audit fix || exit 0)",
"eslint": "npm run precommit",
"postversion": "../../../scripts/npm/postversion.sh",
"precommit": "npm run precommit:eslint -- src",
"precommit:eslint": "node ../../../node_modules/eslint/bin/eslint.js --report-unused-disable-directives --max-warnings 0",
"preversion": "../../../scripts/npm/preversion.sh",
"start": "../../../scripts/npm/notify-build.sh \"src\" \"../cldr-data-downloader/package.json\""
},
"pinDependencies": {
"glob": [
"8",
"glob@10 updated the entrypoint, need funding to upgrade"
]
},
"localDependencies": {
"@msinternal/botframework-webchat-cldr-data-downloader": "production"
},
"dependencies": {
"@msinternal/botframework-webchat-cldr-data-downloader": "0.0.0-0",
"glob": "12.0.0",
"read-package-up": "12.0.0",
"read-pkg": "10.0.0"
}
}