1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@json-editor/json-editor",
- "title": "JSONEditor",
- "description": "JSON Schema based editor",
- "version": "1.1.0-beta.4",
- "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",
- "postversion": "git push && git push --tags && npm publish ./ --access public"
- },
- "license": "MIT",
- "engines": {
- "node": ">= 0.8.0"
- },
- "devDependencies": {
- "grunt": "^1.0.2",
- "ace-builds": "^1.3.3",
- "grunt-contrib-concat": "~1.0.0",
- "grunt-contrib-connect": "~1.0.0",
- "grunt-contrib-jshint": "~1.0.0",
- "grunt-contrib-uglify": "~1.0.0",
- "grunt-contrib-watch": "^1.1.0",
- "grunt-run": "^0.7.0",
- "standard": "^11.0.1",
- "grunt-string-replace": "^1.3.1",
- "jquery": "^3.3.1",
- "sceditor": "^2.1.3"
- },
- "dependencies": {}
- }
|