forked from messageformat/messageformat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.29 KB
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
{
"name": "messageformat",
"version": "1.0.2",
"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/messageformat/messageformat.js.git"
},
"main": "lib/",
"bin": {
"messageformat": "./bin/messageformat.js"
},
"files": [
"bin",
"doc",
"example",
"lib",
"messageformat.js",
"messageformat.min.js",
"messageformat.min.js.map"
],
"dependencies": {
"glob": "~7.0.6",
"make-plural": "~3.0.6",
"messageformat-parser": "^1.0.0",
"nopt": "~3.0.6",
"reserved-words": "^0.1.1"
},
"devDependencies": {
"browserify": "~13.1.0",
"expect.js": "*",
"jsdoc": "~3.4.0",
"mocha": "~3.0.2",
"serve": "*",
"tmp": "*",
"uglify-js": "~2.7.3"
},
"scripts": {
"prepublish": "make all",
"test": "mocha"
},
"browser": {
"fs": false
}
}