-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.69 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
{
"name": "win32-user-locale",
"version": "0.4.0",
"description": "A thin wrapper on top of GetLocaleInfoEx",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp rebuild && tsc",
"pretest": "yarn build",
"test": "jest",
"prepublishOnly": "yarn build",
"postpublish": "git push --follow-tags",
"prettify": "yarn prettier --write \"./**/*.{ts,tsx,js,json,jsx,scss,html,yaml,yml}\"",
"check-prettier": "prettier --check \"./**/*.{ts,tsx,js,json,jsx,scss,html,yaml,yml}\"",
"prebuild-napi-x64": "prebuild -t 4 -r napi -a x64 --strip",
"prebuild-napi-ia32": "prebuild -t 4 -r napi -a ia32 --strip",
"prebuild-napi-arm64": "prebuild -t 4 -r napi -a arm64 --strip",
"prebuild-all": "yarn prebuild-napi-x64 && yarn prebuild-napi-ia32 && yarn prebuild-napi-arm64",
"upload": "prebuild --upload-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desktop/win32-user-locale.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/desktop/win32-user-locale/issues"
},
"homepage": "https://github.com/desktop/win32-user-locale#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.0.0",
"jest": "^27.5.1",
"prebuild": "^11.0.3",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0",
"prebuild-install": "^7.0.1"
},
"binary": {
"napi_versions": [
4
]
},
"config": {
"runtime": "napi",
"target": 4
}
}