-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "ietf-locale-parser",
"version": "2.0.2",
"description": "A parser for IETF language tags",
"main": "lib/IetfLocaleParser.js",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.14",
"eslint": "^7.9.0",
"eslint-config-canonical": "^24.1.1",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4"
},
"scripts": {
"build": "parcel build -d lib/ src/*.js",
"test": "jest",
"start": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/witty-pigeon/ietf-locale-parser.git"
},
"keywords": [
"ietf",
"language",
"locale",
"subtags",
"iana",
"bcp47",
"iso639"
],
"author": "Witty Pigeon",
"license": "MIT",
"bugs": {
"url": "https://github.com/witty-pigeon/ietf-locale-parser/issues"
},
"homepage": "https://github.com/witty-pigeon/ietf-locale-parser#readme"
}