This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "express-intl",
"version": "0.1.0",
"description": "Express helpers for internationalization.",
"keywords": [
"intl",
"i18n",
"express"
],
"author": "Logan Allred <[email protected]>",
"contributors": [
"Logan Allred <[email protected]>"
],
"bugs": {
"url": "https://github.com/redbugz/express-intl/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:redbugz/express-intl.git"
},
"main": "index.js",
"jsnext:main": "src/main.js",
"browser": {
"./lib/locales": false,
"./lib/locales.js": false
},
"dependencies": {
"intl-format-cache": "2.0.4",
"intl-messageformat": "1.1.0",
"intl-relativeformat": "1.1.0"
},
"devDependencies": {
"benchmark": "^1.0.0",
"expect.js": "^0.3.1",
"express": "^4.0.0",
"grunt": "^0.4.5",
"grunt-benchmark": "^0.3.0",
"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.0",
"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.2",
"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"
},
"homepage": "https://github.com/redbugz/express-intl",
"directories": {
"test": "tests"
},
"license": "BSD-3-Clause"
}