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
| {
| "name": "messageformat",
| "version": "0.3.1",
| "description": "PluralFormat and SelectFormat Message and i18n Tool - A JavaScript Implemenation of the ICU standards.",
| "keywords": [
| "i18n",
| "pluralformat",
| "icu",
| "gettext",
| "choiceformat",
| "selectformat",
| "messageformat",
| "internationalization"
| ],
| "author": "Alex Sexton <alexsexton@gmail.com>",
| "contributors": [
| "Eemeli Aro <eemeli@gmail.com>"
| ],
| "license": "MIT",
| "homepage": "https://messageformat.github.io/",
| "repository": {
| "type": "git",
| "url": "https://github.com/SlexAxton/messageformat.js.git"
| },
| "main": "lib/messageformat",
| "bin": {
| "messageformat": "./bin/messageformat.js"
| },
| "files": [
| "lib/messageformat.js",
| "lib/messageformat-parser.js",
| "bin/messageformat.js",
| "example",
| "LICENSE",
| "README.md"
| ],
| "dependencies": {
| "async": "~1.5.2",
| "glob": "~6.0.4",
| "make-plural": "~3.0.3",
| "nopt": "~3.0.6",
| "watchr": "~2.4.13"
| },
| "devDependencies": {
| "browserify": "~13.0.0",
| "expect.js": "*",
| "jsdoc": "~3.4.0",
| "mocha": "*",
| "pegjs": "*",
| "serve": "*"
| },
| "scripts": {
| "test": "make test"
| },
| "browser": {
| "fs": false
| }
| }
|
|