forked from martinandert/counterpart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.65 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
63
64
65
66
67
68
{
"name": "@gandi/counterpart",
"version": "1.1.1",
"description": "A translation and localization library for Node.js and the browser",
"author": {
"name": "Martin Andert",
"email": "[email protected]"
},
"contributors": [
{
"name": "Gandi"
},
{
"name": "Callum Jefferies",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/gandi/counterpart",
"bugs": {
"url": "https://github.com/gandi/counterpart/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gandi/counterpart.git"
},
"keywords": [
"globalization",
"g11n",
"internationalization",
"i18n",
"localization",
"l10n",
"translation",
"translate",
"localize"
],
"files": [
"locales",
"index.js",
"index.js.flow",
"strftime.js",
"README.md",
"LICENSE"
],
"main": "index.js",
"scripts": {
"format:check": "prettier --check --cache --cache-location=.cache/prettier \"**/*.js\"",
"format:write": "prettier --write --cache --cache-location=.cache/prettier \"**/*.js\"",
"test": "mocha -t 5000 -b -R spec spec.js",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=22.1.0"
},
"packageManager": "[email protected]+sha512.d08425c8062f56d43bb8e84315864218af2492eb769e1f1ca40740f44e85bd148969382d651660363942e5909cb7ffcbef7ca0ae963ddc2c57a51243b4da8f56",
"dependencies": {
"date-names": "^0.1.11",
"extend": "^3.0.0",
"pluralizers": "^0.1.7",
"sprintf-js": "^1.0.3"
},
"devDependencies": {
"mocha": "^2.0.1",
"prettier": "^3.3.3",
"time": "github:riyadshauk/node-time"
}
}