-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "node-polyglot",
"version": "2.5.0",
"description": "Give your JavaScript the ability to speak many languages.",
"main": "index.js",
"scripts": {
"prepublishOnly": "safe-publish-latest",
"prepublish": "not-in-publish || npm run prepublishOnly",
"pretest": "npm run lint",
"test": "npm run tests-only",
"tests-only": "nyc mocha test/*.js --reporter spec",
"posttest": "aud --production",
"lint": "eslint .",
"docs": "docco -o docs/ index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/airbnb/polyglot.js.git"
},
"keywords": [
"i18n",
"internationalization",
"internationalisation",
"translation",
"interpolation",
"translate",
"polyglot"
],
"author": "Spike Brehm <[email protected]>",
"dependencies": {
"hasown": "^2.0.2",
"object.entries": "^1.1.8",
"warning": "^4.0.3"
},
"devDependencies": {
"array.prototype.foreach": "^1.0.7",
"aud": "^2.0.4",
"chai": "^3.5.0",
"docco": "^0.7.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"in-publish": "^2.0.1",
"iterate-iterator": "^1.0.2",
"mocha": "^3.5.3",
"nyc": "^10.3.2",
"safe-publish-latest": "^2.0.0",
"string.prototype.matchall": "^4.0.11",
"uglify-js": "^2.7.3"
},
"license": "BSD-2-Clause",
"engines": {
"node": ">= 0.4"
}
}