-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 884 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
39
40
{
"name": "jsonfromresx",
"version": "1.0.0",
"description": "Convert resource files (.resx) into JavaScript objects.",
"main": "src/jsonfromresx.js",
"scripts": {
"test": "nodeunit tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binaryluke/jsonfromresx.git"
},
"keywords": [
"resources",
"resx",
"json",
"convert"
],
"author": {
"name": "Luke Howard",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/binaryluke/jsonfromresx/issues"
},
"homepage": "https://github.com/binaryluke/jsonfromresx#readme",
"files": [
"src"
],
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1"
},
"dependencies": {
"xml2js": "^0.4.10"
}
}