forked from messageformat/messageformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "messageformat",
"version": "0.3.0-0",
"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": "To use or fork, MIT License. To contribute back, Dojo CLA",
"homepage": "https://github.com/SlexAxton/messageformat.js",
"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": "~0.2.10",
"glob": "~3.2.8",
"make-plural": "^3.0.0-rc4",
"nopt": "~2.1.2",
"watchr": "~2.4.9"
},
"devDependencies": {
"browserify": "^9.0.3",
"expect.js": "*",
"jsdoc": "^3.3.0-beta1",
"mocha": "*",
"pegjs": "*",
"serve": "*"
},
"scripts": {
"test": "make test"
},
"browser": {
"fs": false
}
}