jsoneditor/package.json

76 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "jsoneditor",
2020-03-29 20:48:01 +08:00
"version": "8.6.4",
"main": "./index",
2016-01-15 04:26:39 +08:00
"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": "Apache-2.0",
"homepage": "https://github.com/josdejong/jsoneditor",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/jsoneditor.git"
},
"bugs": "https://github.com/josdejong/jsoneditor/issues",
"scripts": {
2014-05-30 16:33:11 +08:00
"build": "gulp",
2019-07-28 17:30:15 +08:00
"minify": "gulp minify",
"start": "gulp watch",
2019-08-29 23:03:09 +08:00
"test": "mocha test --require @babel/register",
"lint": "standard --env=mocha",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"ace-builds": "^1.4.9",
2020-03-13 04:46:13 +08:00
"ajv": "^6.12.0",
"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"
},
"devDependencies": {
2020-03-24 04:57:40 +08:00
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"btoa": "^1.2.1",
2019-11-02 21:06:32 +08:00
"date-format": "^3.0.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
2020-03-18 17:53:34 +08:00
"gulp-clean-css": "^4.3.0",
"gulp-concat-css": "^3.1.0",
"gulp-sass": "^4.0.2",
"jsdom": "^16.2.2",
"json-loader": "^0.5.7",
"mkdirp": "^1.0.4",
2020-03-18 17:53:34 +08:00
"mocha": "^7.1.1",
"standard": "^14.3.3",
2020-03-29 20:48:01 +08:00
"uglify-js": "^3.8.1",
"webpack": "^4.42.1"
},
"files": [
"dist",
"docs",
"examples",
"src",
"HISTORY.md",
"index.js",
"LICENSE",
"NOTICE",
"README.md"
],
"standard": {
"ignore": [
"src/js/assets",
"examples/react*"
]
}
}