UNPKG

2.28 kBJSONView Raw
1{
2 "name": "format-message",
3 "version": "3.2.0",
4 "description": "Write default messages inline. Optionally transpile translations.",
5 "keywords": [
6 "i18n",
7 "intl",
8 "internationalization",
9 "localization",
10 "globalization",
11 "messageformat",
12 "pluralformat",
13 "selectformat",
14 "inline",
15 "transpile",
16 "plural",
17 "gender",
18 "icu"
19 ],
20 "main": "lib/format-message.js",
21 "bin": {
22 "format-message": "bin/format-message"
23 },
24 "dependencies": {
25 "commander": "^2.8.1",
26 "format-message-core": "^3.1.0",
27 "glob": "^5.0.2",
28 "message-format": "^1.2.0",
29 "object-assign": "^4.0.1"
30 },
31 "devDependencies": {
32 "benchmark": "^1.0.0",
33 "chai": "^3.0.0",
34 "intl": "^1.0.0",
35 "intl-messageformat": "1.2.0",
36 "istanbul": "^0.4.0",
37 "karma": "^0.13.0",
38 "karma-chai": "^0.1.0",
39 "karma-chrome-launcher": "^0.2.0",
40 "karma-cli": "^0.1.0",
41 "karma-firefox-launcher": "^0.1.4",
42 "karma-mocha": "^0.2.0",
43 "karma-safari-launcher": "^0.1.1",
44 "karma-sourcemap-loader": "^0.3.4",
45 "karma-webpack": "^1.5.1",
46 "mocha": "^2.2.5",
47 "standard": "^5.0.0",
48 "webpack": "^1.9.10"
49 },
50 "scripts": {
51 "benchmark": "npm run benchmark-compile && node scripts/benchmark.js",
52 "benchmark-compile": "bin/format-message inline scripts/benchmark.src.js > scripts/benchmark.js",
53 "lint": "standard",
54 "prepublish": "webpack -p",
55 "test": "npm run lint && npm run test-setup && npm run test-node && npm run test-browsers",
56 "test-browsers": "karma start --browsers Firefox --single-run",
57 "test-setup": "rm -rf test/inline && bin/format-message inline test/format.spec.js > test/format-inline.spec.js",
58 "test-node": "istanbul cover _mocha -- -cG --timeout 10000 -R dot test/**/*.spec.js"
59 },
60 "standard": {
61 "ignore": [
62 "test/format-inline.spec.js",
63 "scripts/benchmark.js"
64 ]
65 },
66 "repository": {
67 "type": "git",
68 "url": "http://github.com/format-message/format-message.git"
69 },
70 "author": {
71 "name": "Andy VanWagoner",
72 "email": "thetalecrafter@gmail.com"
73 },
74 "license": "MIT",
75 "bugs": {
76 "url": "https://github.com/format-message/format-message/issues"
77 },
78 "homepage": "https://github.com/format-message/format-message"
79}