jsoneditor/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "jsoneditor",
2016-06-16 01:35:28 +08:00
"version": "5.5.6",
"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": {
2016-07-13 21:09:56 +08:00
"build": "react-dev-server --static dist --build; mv dist/bundle.js dist/jsoneditor.js; uglifyjs dist/jsoneditor.js -o dist/jsoneditor.min.js; cp src/jsoneditor.css dist",
"watch": "react-dev-server --static src --index develop.html",
2016-07-13 03:43:32 +08:00
"test": "mocha test"
},
"dependencies": {
2016-04-10 02:06:29 +08:00
"ajv": "3.8.8",
"brace": "0.8.0",
"javascript-natural-sort": "0.7.1"
},
"devDependencies": {
2016-07-12 19:56:40 +08:00
"babel-plugin-transform-react-jsx": "6.8.0",
"browserify": "13.0.1",
"buble": "0.12.5",
"debug": "2.2.0",
2016-04-10 02:06:29 +08:00
"gulp": "3.9.1",
"gulp-clean-css": "2.0.5",
2016-01-22 03:01:49 +08:00
"gulp-concat-css": "2.2.0",
2016-04-10 02:06:29 +08:00
"gulp-shell": "0.5.2",
2016-01-22 03:01:49 +08:00
"gulp-util": "3.0.7",
"json-loader": "0.5.4",
2016-07-12 19:56:40 +08:00
"mithril": "0.2.5",
2016-01-22 03:01:49 +08:00
"mkdirp": "0.5.1",
2016-04-10 02:06:29 +08:00
"mocha": "2.4.5",
2016-07-12 19:56:40 +08:00
"preact": "4.8.0",
2016-07-13 03:45:38 +08:00
"react-dev-server": "0.6.2",
2016-07-12 19:56:40 +08:00
"reify": "0.3.6",
"rollup": "0.34.1",
"rollup-plugin-buble": "0.12.1",
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-node-resolve": "1.7.1",
"rollup-plugin-npm": "2.0.0",
2016-04-10 02:06:29 +08:00
"uglify-js": "2.6.2",
"webpack": "1.12.14"
}
}