-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
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
{
"name": "bcp47-picker",
"version": "1.0.19",
"description": "A CustomElement following: https://www.w3.org/International/questions/qa-choosing-language-tags",
"repository": {
"type": "git",
"url": "git+https://github.com/om-mediaworks/bcp47-picker.git"
},
"author": "Daniel Beeke",
"license": "MIT",
"bugs": {
"url": "https://github.com/om-mediaworks/bcp47-picker/issues"
},
"homepage": "https://github.com/om-mediaworks/bcp47-picker#readme",
"type": "module",
"source": [
"src/index.ts",
"src/init.ts"
],
"main": "./dist/bcp47-picker.cjs",
"exports": {
".": "./dist/bcp47-picker.modern.js",
"./init": "./dist/init.modern.js"
},
"scripts": {
"build": "rm -rf dist && microbundle",
"dev": "rm -rf dist && microbundle watch",
"demo": "parcel demo/index.html",
"build-demo": "rm -rf docs/ && parcel build demo/index.html --dist-dir docs --target demo && echo \"bcp47.mediaworks.global\" > docs/CNAME"
},
"targets": {
"demo": {
"engines": {
"browsers": "> .5% or last 2 versions"
}
}
},
"staticFiles": {
"staticPath": "static"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.5.0",
"@parcel/transformer-sass": "^2.5.0",
"cors-anywhere": "^0.4.4",
"microbundle": "^0.15.1",
"parcel": "^2.8.3",
"parcel-reporter-static-files-copy": "^1.3.4"
},
"dependencies": {
"@formatjs/intl-listformat": "^7.2.1",
"bcp-47": "^2.1.0",
"bcp-47-normalize": "^2.2.0",
"bootstrap-icons": "^1.8.1",
"fetch-dedupe": "^3.0.0",
"flexsearch": "^0.7.31",
"iso-15924": "^3.1.0",
"iso-3166": "^4.0.1",
"iso-639-3": "^3.0.1",
"uhtml": "^3.0.0",
"un-m49": "^2.0.1"
}
}