-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 788 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 788 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": "jsonite-shell",
"version": "1.0.0",
"description": "JSON Builder for command line",
"main": "index.js",
"scripts": {
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dafortune/jsonite.git"
},
"author": "Damian Andres Fortuna",
"license": "MIT",
"bugs": {
"url": "https://github.com/dafortune/jsonite/issues"
},
"homepage": "https://github.com/dafortune/jsonite#readme",
"dependencies": {
"exec": "^0.2.1",
"lodash.foreach": "^4.3.0",
"lodash.get": "^4.3.0",
"lodash.reduce": "^4.4.0",
"lodash.set": "^4.2.0",
"yargs": "^4.7.1"
},
"preferGlobal": true,
"bin": {
"jsonite": "index.js"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}