This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
forked from formatjs/intl-relativeformat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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
59
60
61
62
63
64
65
66
{
"name": "@ember-intl/intl-relativeformat",
"version": "2.1.0",
"description": "Formats JavaScript dates to relative time strings.",
"keywords": [
"intl",
"i18n",
"relative",
"moment",
"format",
"date"
],
"author": "Caridy Patino <[email protected]>",
"contributors": [
"Eric Ferraiuolo <[email protected]>"
],
"bugs": {
"url": "https://github.com/yahoo/intl-relativeformat/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/intl-relativeformat.git"
},
"main": "index.js",
"jsnext:main": "src/main.js",
"browser": {
"./lib/locales": false,
"./lib/locales.js": false
},
"dependencies": {
"@ember-intl/intl-messageformat": "^2.0.0"
},
"devDependencies": {
"benchmark": "^1.0.0",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-benchmark": "^0.3.0",
"grunt-browserify": "^3.3.0",
"grunt-bundle-jsnext-lib": "^0.5.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-connect": "^0.9.0",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-extract-cldr-data": "^4.1.0",
"grunt-json-remove-fields": "git://github.com/ericf/grunt-json-remove-fields#improve-files-and-output",
"grunt-saucelabs": "^8.3.2",
"intl": "^0.1.4",
"istanbul": "^0.3.2",
"mocha": "^2.0.1",
"moment": "^2.8.2",
"xunit-file": "0.0.6"
},
"scripts": {
"test": "istanbul cover -x lib/locales.js -- _mocha tests/runner.js --reporter spec",
"travis": "istanbul cover -x lib/locales.js -- _mocha tests/runner.js --reporter spec && tests/saucelabs.sh",
"prepublish": "grunt"
},
"homepage": "https://github.com/yahoo/intl-relativeformat",
"directories": {
"test": "tests"
},
"license": "BSD-3-Clause"
}