forked from jdorn/json-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 889 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
{
"name": "json-editor",
"title": "JSONEditor",
"description": "JSON Schema based editor",
"version": "0.7.28",
"main": "dist/jsoneditor.js",
"author": {
"name": "Jeremy Dorn",
"email": "[email protected]",
"url": "http://jeremydorn.com"
},
"bugs": {
"url": "https://github.com/jdorn/json-editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jdorn/json-editor.git"
},
"keywords": [
"json",
"schema",
"jsonschema",
"editor"
],
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"grunt": "~1.0.1",
"grunt-contrib-concat": "~1.0.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-uglify": "~1.0.0",
"grunt-contrib-watch": "~1.0.0"
},
"scripts": {
"build": "npm install && grunt",
"start": "grunt watch",
"test": "grunt"
}
}