-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
89 lines (89 loc) · 2.18 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nunjucks-intl",
"version": "1.0.3",
"description": "Nunjucks helpers for internationalization with format.js.",
"keywords": [
"intl",
"i18n",
"nunjucks"
],
"author": "Konstantin Burkalev <[email protected]>",
"contributors": [
"Eric Ferraiuolo <[email protected]>",
"Drew Folta <[email protected]>",
"Caridy Patino <[email protected]>",
"Anthony Pipkin <[email protected]>"
],
"bugs": {
"url": "https://github.com/KSDaemon/nunjucks-intl/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:KSDaemon/nunjucks-intl.git"
},
"main": "index.js",
"jsnext:main": "src/nunjucks-intl.js",
"browser": {
"./lib/locales": false,
"./lib/locales.js": false
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"intl-format-cache": "^4.3.1",
"intl-messageformat": "^9.13.0",
"intl-relativeformat": "^6.4.3"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"benchmark": "^2.1.4",
"coveralls": "^3.1.1",
"expect.js": "^0.3.1",
"grunt": "^1.5.2",
"grunt-babel": "^8.0.0",
"grunt-benchmark": "^1.0.0",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-uglify": "^5.2.1",
"grunt-extract-cldr-data": "^4.1.0",
"intl": "^1.2.5",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.0.0",
"nunjucks": "^3.2.3",
"nyc": "^15.1.0",
"xunit-file": "^2.0.0"
},
"scripts": {
"prepublish": "grunt",
"test": "NODE_ENV=test nyc mocha --exit --require @babel/register -R spec tests/runner.js",
"cover": "nyc report"
},
"nyc": {
"include": [
"index.js",
"src/*.js",
"dist/*.js"
],
"report-dir": "./coverage",
"temp-dir": "./coverage",
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"homepage": "https://github.com/KSDaemon/nunjucks-intl",
"directories": {
"test": "tests"
},
"license": "BSD"
}