forked from airbnb/polyglot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "node-polyglot",
"version": "2.3.0",
"description": "Give your JavaScript the ability to speak many languages.",
"main": "index.js",
"scripts": {
"prepublish": "safe-publish-latest",
"pretest": "npm run --silent lint",
"test": "npm run --silent tests-only",
"tests-only": "mocha test/*.js --reporter spec",
"lint": "eslint *.js test/*.js",
"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": {
"for-each": "^0.3.3",
"has": "^1.0.3",
"string.prototype.trim": "^1.1.2",
"warning": "^4.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"docco": "^0.7.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^3.5.3",
"safe-publish-latest": "^1.1.1",
"uglify-js": "2.7.3"
},
"license": "BSD-2-Clause"
}