-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.91 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
67
68
{
"name": "dust-intl",
"version": "1.1.1",
"description": "Dust helpers for internationalization.",
"homepage": "https://github.com/yahoo/dust-intl",
"keywords": [
"intl",
"i18n",
"dust"
],
"author": "Drew Folta <[email protected]>",
"contributors": [
"Drew Folta <[email protected]>",
"Eric Ferraiuolo <[email protected]>",
"Caridy Patino <[email protected]>"
],
"bugs": {
"url": "https://github.com/yahoo/dust-intl/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/dust-intl.git"
},
"main": "index.js",
"jsnext:main": "src/main.js",
"browser": {
"./lib/locales": false,
"./lib/locales.js": false
},
"engines": {
"node": ">=0.10.0",
"npm": ">=1.4.0"
},
"dependencies": {
"intl-format-cache": "2.0.5",
"intl-messageformat": "1.1.0",
"intl-relativeformat": "1.1.0"
},
"devDependencies": {
"async": "^0.9.0",
"chai": "^2.1.2",
"dustjs-linkedin": "^2.4.0",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-browserify": "^3.5.1",
"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.1",
"grunt-contrib-uglify": "^0.8.0",
"grunt-extract-cldr-data": "2.1.1",
"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.0",
"mocha": "^2.0.1",
"xunit-file": "0.0.6"
},
"scripts": {
"prepublish": "grunt",
"test": "istanbul cover -x lib/locales.js -- ./node_modules/mocha/bin/_mocha tests/runner.js --reporter spec",
"travis": "istanbul cover -x lib/locales.js -- _mocha tests/runner.js --reporter spec && ./saucelabs.sh"
},
"license": "BSD-3-Clause"
}