-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 887 Bytes
/
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
{
"name": "resx-to-json",
"version": "0.1.1",
"description": "Converts .resx files containing localized strings to JSON format",
"main": "./index.js",
"bin": {
"resx-to-json": "./bin/resx-to-json"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwittevrongel/resx-to-json.git"
},
"keywords": [
"resx",
"json"
],
"author": "Jeremiah Wittevrongel",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jwittevrongel/resx-to-json/issues"
},
"homepage": "https://github.com/jwittevrongel/resx-to-json#readme",
"dependencies": {
"lodash": "^4.0.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"jshint": "^2.9.1",
"should": "^8.2.0"
}
}