-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 765 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 765 Bytes
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
{
"name": "json2property",
"version": "1.0.2-alpha",
"description": "Given a Target Directory will go through and convert json files into properties files",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesblack/JSON2Property"
},
"keywords": [
"json",
"property",
"properties"
],
"author": "James Black",
"license": "MIT",
"engines": {
"node": ">=0.8.14"
},
"bin": {
"json2property": "./bin/json2property.js"
},
"dependencies": {
"commander": "~2.0.0",
"glob": "~3.2.6",
"mocha": "~1.12.0",
"chai": "~1.7.2",
"batch": "~0.5.0",
"mkpath": "~0.1.0",
"multimeter": "~0.1.1"
}
}