-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
50 lines (50 loc) · 1.25 KB
/
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
44
45
46
47
48
49
50
{
"name": "@pmk65/jedemov2",
"title": "JSONEditor Interactive Demo v2",
"description": "JSON Schema based editor demo",
"version": "1.1.0",
"main": "dist/jsoneditor.js",
"author": {
"name": "Peter Klein",
"email": "[email protected]",
"url": "https://github.com/pmk65/jedemov2"
},
"bugs": {
"url": "https://github.com/pmk65/jedemov2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pmk65/jedemov2.git"
},
"keywords": [
"json",
"schema",
"jsonschema",
"editor"
],
"scripts": {
"prepare": "grunt",
"build": "npm install && grunt",
"start": "grunt watch",
"version": "grunt string-replace",
"prepublishOnly": "grunt string-replace",
"postversion": "git push && git push --tags && npm publish ./ --access public"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"grunt": "^1.0.4",
"grunt-contrib-concat": "~1.0.0",
"grunt-contrib-connect": "~2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-uglify": "~1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-string-replace": "^1.3.1",
"standard": "^11.0.1"
},
"dependencies": {}
}