forked from sunwei/json-editor-online-command-line-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 904 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
41
42
43
{
"name": "json-editor-online",
"version": "3.0.0",
"description": "Command line tool for jsoneditoronline.cn",
"main": "json-editor.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "git@code.aliyun.com:wayde.sun/json-editor-online.git"
},
"keywords": [
"json",
"editor",
"online",
"json-editor-online",
"npm",
"package",
"command",
"line"
],
"author": "Wayde Sun <wayde.sun@gmail.com> (http://www.jsoneditoronline.cn/)",
"license": "MIT",
"preferGlobal": true,
"bin": {
"json": "./json-editor.js"
},
"dependencies": {
"commander": "^2.11.0",
"jsonpack": "^1.1.5",
"progress": "^2.0.0",
"request": "^2.81.0",
"urlencode": "^1.1.0"
},
"engines": {
"node": ">=4.8.4",
"npm": ">=2.15.11"
},
"devDependencies": {
"mocha": "^3.5.0"
}
}