2013-05-04 04:55:15 +08:00
|
|
|
{
|
2013-11-16 01:11:50 +08:00
|
|
|
"name": "jsoneditor",
|
2020-07-03 02:10:21 +08:00
|
|
|
"version": "9.0.3",
|
2015-02-28 04:54:04 +08:00
|
|
|
"main": "./index",
|
2016-01-15 04:26:39 +08:00
|
|
|
"description": "A web-based tool to view, edit, format, and validate JSON",
|
2013-11-16 01:11:50 +08:00
|
|
|
"tags": [
|
|
|
|
"json",
|
|
|
|
"editor",
|
|
|
|
"viewer",
|
|
|
|
"formatter"
|
|
|
|
],
|
|
|
|
"author": "Jos de Jong <wjosdejong@gmail.com>",
|
2015-12-28 19:13:35 +08:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"homepage": "https://github.com/josdejong/jsoneditor",
|
2013-11-16 01:11:50 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/josdejong/jsoneditor.git"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/josdejong/jsoneditor/issues",
|
2014-05-30 00:35:39 +08:00
|
|
|
"scripts": {
|
2014-05-30 16:33:11 +08:00
|
|
|
"build": "gulp",
|
2019-07-28 17:30:15 +08:00
|
|
|
"minify": "gulp minify",
|
2018-05-03 17:22:58 +08:00
|
|
|
"start": "gulp watch",
|
2019-08-29 23:03:09 +08:00
|
|
|
"test": "mocha test --require @babel/register",
|
2019-09-01 23:39:40 +08:00
|
|
|
"lint": "standard --env=mocha",
|
|
|
|
"prepublishOnly": "npm test && npm run build"
|
2014-05-30 00:35:39 +08:00
|
|
|
},
|
2015-02-28 04:54:04 +08:00
|
|
|
"dependencies": {
|
2020-04-19 16:00:26 +08:00
|
|
|
"ace-builds": "^1.4.11",
|
2020-04-22 15:46:39 +08:00
|
|
|
"ajv": "^6.12.2",
|
2019-10-23 02:30:20 +08:00
|
|
|
"javascript-natural-sort": "^0.7.1",
|
|
|
|
"jmespath": "^0.15.0",
|
|
|
|
"json-source-map": "^0.6.1",
|
|
|
|
"mobius1-selectr": "^2.4.13",
|
|
|
|
"picomodal": "^3.0.0",
|
2020-01-07 03:01:54 +08:00
|
|
|
"vanilla-picker": "^2.10.1"
|
2015-02-28 04:54:04 +08:00
|
|
|
},
|
2013-11-16 01:11:50 +08:00
|
|
|
"devDependencies": {
|
2020-06-24 14:41:34 +08:00
|
|
|
"@babel/core": "7.10.3",
|
|
|
|
"@babel/preset-env": "7.10.3",
|
|
|
|
"@babel/register": "7.10.3",
|
2020-04-19 16:00:26 +08:00
|
|
|
"babel-loader": "8.1.0",
|
|
|
|
"btoa": "1.2.1",
|
|
|
|
"date-format": "3.0.0",
|
|
|
|
"fancy-log": "1.3.3",
|
|
|
|
"gulp": "4.0.2",
|
|
|
|
"gulp-clean-css": "4.3.0",
|
|
|
|
"gulp-concat-css": "3.1.0",
|
2020-05-03 16:10:08 +08:00
|
|
|
"gulp-sass": "4.1.0",
|
2020-04-19 16:00:26 +08:00
|
|
|
"jsdom": "16.2.2",
|
|
|
|
"json-loader": "0.5.7",
|
|
|
|
"mkdirp": "1.0.4",
|
2020-06-24 14:41:34 +08:00
|
|
|
"mocha": "8.0.1",
|
2020-05-30 19:40:52 +08:00
|
|
|
"source-map-loader": "1.0.0",
|
2020-05-13 14:20:40 +08:00
|
|
|
"standard": "14.3.4",
|
2020-06-24 14:41:34 +08:00
|
|
|
"uglify-js": "3.10.0",
|
2020-04-22 15:46:39 +08:00
|
|
|
"webpack": "4.43.0"
|
2019-08-28 19:21:14 +08:00
|
|
|
},
|
2019-09-02 02:49:26 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"docs",
|
|
|
|
"examples",
|
|
|
|
"src",
|
|
|
|
"HISTORY.md",
|
|
|
|
"index.js",
|
|
|
|
"LICENSE",
|
|
|
|
"NOTICE",
|
|
|
|
"README.md"
|
|
|
|
],
|
2019-08-28 19:21:14 +08:00
|
|
|
"standard": {
|
|
|
|
"ignore": [
|
|
|
|
"src/js/assets",
|
|
|
|
"examples/react*"
|
|
|
|
]
|
2013-11-16 01:11:50 +08:00
|
|
|
}
|
2013-05-04 04:55:15 +08:00
|
|
|
}
|