jsoneditor/package.json

59 lines
1.4 KiB
JSON

{
"name": "jsoneditor",
"version": "6.0.0-BETA",
"main": "./src/index",
"description": "A web-based tool to view, edit, format, and validate JSON",
"tags": [
"json",
"editor",
"viewer",
"formatter"
],
"author": "Jos de Jong <wjosdejong@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/josdejong/jsoneditor",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/jsoneditor.git"
},
"bugs": "https://github.com/josdejong/jsoneditor/issues",
"scripts": {
"start": "gulp watch",
"build": "gulp",
"test": "ava test/*.test.js test/**/*.test.js --verbose"
},
"dependencies": {
"ajv": "4.8.2",
"brace": "0.9.0",
"javascript-natural-sort": "0.7.1",
"lodash": "4.16.4",
"preact": "6.4.0"
},
"devDependencies": {
"ava": "0.16.0",
"babel-core": "6.18.0",
"babel-loader": "6.2.7",
"babel-preset-stage-2": "6.18.0",
"babel-preset-stage-3": "6.17.0",
"browser-sync": "2.17.5",
"css-loader": "0.25.0",
"graceful-fs": "4.1.9",
"gulp": "3.9.1",
"gulp-shell": "0.5.2",
"gulp-util": "3.0.7",
"json-loader": "0.5.4",
"less": "2.7.1",
"less-loader": "2.2.3",
"mkdirp": "0.5.1",
"style-loader": "0.13.1",
"svg-url-loader": "1.1.0",
"webpack": "1.13.3"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}