75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "jsoneditor",
|
|
"version": "6.0.0-BETA",
|
|
"main": "./index.js",
|
|
"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",
|
|
"flow": "flow; test $? -eq 0 -o $? -eq 2",
|
|
"test": "ava --verbose",
|
|
"watch:test": "ava --verbose --watch"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "4.10.4",
|
|
"brace": "0.9.1",
|
|
"javascript-natural-sort": "0.7.1",
|
|
"lodash": "4.17.4",
|
|
"preact": "7.1.0",
|
|
"preact-compat": "3.9.4",
|
|
"react": "15.4.1",
|
|
"react-dom": "15.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "0.17.0",
|
|
"babel-core": "6.21.0",
|
|
"babel-loader": "6.2.10",
|
|
"babel-plugin-transform-flow-strip-types": "6.21.0",
|
|
"babel-preset-stage-2": "6.18.0",
|
|
"babel-preset-stage-3": "6.17.0",
|
|
"browser-sync": "2.18.6",
|
|
"css-loader": "0.26.1",
|
|
"flow-bin": "0.37.4",
|
|
"graceful-fs": "4.1.11",
|
|
"gulp": "3.9.1",
|
|
"gulp-babel": "6.1.2",
|
|
"gulp-multi-process": "0.1.0",
|
|
"gulp-shell": "0.5.2",
|
|
"gulp-util": "3.0.8",
|
|
"json-loader": "0.5.4",
|
|
"less": "2.7.2",
|
|
"less-loader": "2.2.3",
|
|
"mkdirp": "0.5.1",
|
|
"style-loader": "0.13.1",
|
|
"svg-url-loader": "1.1.0",
|
|
"webpack": "1.14.0"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"test/**/*.test.js"
|
|
],
|
|
"source": [
|
|
"./src/**/*"
|
|
],
|
|
"require": [
|
|
"babel-register"
|
|
],
|
|
"concurrency": 4,
|
|
"babel": "inherit"
|
|
}
|
|
}
|