-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.43 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": "icu-converter",
"version": "0.1.5",
"description": "Convert ICU resource bundles to other formats",
"scripts": {
"test": "grunt test",
"build": "grunt",
"clean": "grunt clean"
},
"bin": {
"icu-converter": "bin/icu-converter.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alex-dow/icu-converter"
},
"files": [
"src",
"bin"
],
"main": "src/icu-converter",
"keywords": [
"icu",
"i18n",
"l10n",
"localization",
"internationalization",
"messageformat"
],
"author": "Alex Dowgailenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-dow/icu-converter/issues"
},
"peerDependencies": {
"mocha": ">=1.20.0",
"istanbul": "0.x.x"
},
"dependencies": {
"commander": "^2.9.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pegjs": "^0.10.0",
"properties": "^1.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-env": "^0.4.4",
"grunt-jscs": "^3.0.1",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.2",
"grunt-peg": "^2.0.1",
"grunt-sloccount": "^0.1.1",
"istanbul": "^0.4.5",
"jshint-jenkins-checkstyle-reporter": "^0.1.2",
"mocha": "^3.3.0",
"mockery": "^2.0.0",
"rimraf": "^2.6.1",
"sinon": "^2.2.0"
}
}