-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.2 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.2 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
{
"name": "os-locale-s",
"version": "1.1.4",
"description": "Its a light weight version that minimizes the dependency module of `os-locale`",
"private": false,
"type": "commonjs",
"main": "./cjs/index.js",
"module": "./esm/index.mjs",
"types": "./index.d.ts",
"sideEffects": false,
"author": {
"name": "jeffy-g",
"email": "hirotom1107@gmail.com"
},
"engines": {
"node": ">=14.14",
"yarn": "^1.22.4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffy-g/os-locale-s/issues"
},
"homepage": "https://github.com/jeffy-g/os-locale-s#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jeffy-g/os-locale-s.git"
},
"files": [
"package.json",
"license",
"reamd.md",
"cjs",
"esm",
"*.d.ts"
],
"keywords": [
"typescript",
"javascript",
"locale",
"lang",
"language",
"system",
"os",
"string",
"user",
"country",
"id",
"identifier",
"region"
],
"devDependencies": {
"@types/node": "^25.3.2",
"@types/jest": "26",
"jest": "26"
},
"scripts": {
"test": "jest --silent=false --colors -c=jest.configjs.js && cat logs/dots_test-result.json"
}
}