-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "pofile",
"description": "Parse and serialize Gettext PO files.",
"version": "1.1.4",
"author": {
"name": "Ruben Vermeersch",
"email": "[email protected]",
"url": "http://savanne.be/"
},
"contributors": [
"Eyal Lewinsohn",
"Gabe Gorelick",
"Julian Bäume",
"Mike Holly",
"Sander Houttekier"
],
"homepage": "http://github.com/rubenv/pofile",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/rubenv/pofile.git"
},
"main": "./lib/po",
"types": "./pofile.d.ts",
"keywords": [
"i18n",
"l10n",
"gettext",
"mo",
"po"
],
"scripts": {
"test": "grunt test",
"prepublish": "grunt build"
},
"directories": {
"test": "test"
},
"devDependencies": {
"browserify": "~14.0.0",
"coffeescript": "^2.6.1",
"grunt": "~1.5.2",
"grunt-browserify": "~5.0.0",
"grunt-bump": "0.8.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~2.1.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-jscs": "~3.0.1",
"grunt-mocha-cli": "~7.0.0"
},
"dependencies": {}
}