forked from json-editor/json-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
51
52
53
54
55
56
57
{
"name": "@json-editor/json-editor",
"title": "JSONEditor",
"description": "JSON Schema based editor",
"version": "1.3.2",
"main": "dist/jsoneditor.js",
"author": {
"name": "Jeremy Dorn",
"email": "[email protected]",
"url": "http://jeremydorn.com"
},
"bugs": {
"url": "https://github.com/json-editor/json-editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/json-editor/json-editor.git"
},
"keywords": [
"json",
"schema",
"jsonschema",
"editor"
],
"scripts": {
"prepare": "grunt",
"build": "npm install && grunt",
"start": "grunt watch",
"test": "grunt test",
"serve-test": "grunt serve-test",
"docker-test": "cd tests && docker-compose run --rm node npm run build && docker-compose up -d && docker-compose ps && docker-compose run --rm codeceptjs codeceptjs run --grep '(?=.*)^(?!.*@optional)'",
"preversion": "npm run docker-test",
"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": {
"ace-builds": "^1.3.3",
"grunt": "^1.0.2",
"grunt-contrib-concat": "~1.0.0",
"grunt-contrib-connect": "~2.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-run": "^0.8.1",
"grunt-string-replace": "^1.3.1",
"jquery": "^3.3.1",
"sceditor": "^2.1.3",
"standard": "^11.0.1"
},
"dependencies": {}
}