jsoneditor/package.json

74 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "jsoneditor",
"version": "6.0.0-BETA",
"main": "./index.js",
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": "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": {
2016-08-20 16:06:18 +08:00
"start": "gulp watch",
"build": "gulp",
2016-12-22 19:08:32 +08:00
"flow": "flow; test $? -eq 0 -o $? -eq 2",
2016-12-30 20:45:43 +08:00
"test": "ava --verbose",
"watch:test": "ava --verbose --watch"
},
"dependencies": {
2017-01-05 18:39:01 +08:00
"ajv": "4.10.3",
"brace": "0.9.1",
"javascript-natural-sort": "0.7.1",
2017-01-05 18:39:01 +08:00
"lodash": "4.17.4",
2016-12-22 19:08:32 +08:00
"react": "15.4.1",
2017-01-05 18:18:38 +08:00
"react-dom": "15.4.1",
"react-scroll": "1.4.4"
},
"devDependencies": {
2016-12-22 19:08:32 +08:00
"ava": "0.17.0",
2017-01-05 18:39:01 +08:00
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-flow-strip-types": "6.21.0",
2016-10-29 03:21:59 +08:00
"babel-preset-stage-2": "6.18.0",
"babel-preset-stage-3": "6.17.0",
2017-01-05 18:39:01 +08:00
"browser-sync": "2.18.5",
2016-12-22 19:08:32 +08:00
"css-loader": "0.26.1",
2017-01-05 18:39:01 +08:00
"flow-bin": "0.37.4",
2016-12-22 19:08:32 +08:00
"graceful-fs": "4.1.11",
2016-04-10 02:06:29 +08:00
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-multi-process": "0.1.0",
2016-04-10 02:06:29 +08:00
"gulp-shell": "0.5.2",
2017-01-05 18:39:01 +08:00
"gulp-util": "3.0.8",
2016-01-22 03:01:49 +08:00
"json-loader": "0.5.4",
2017-01-05 18:39:01 +08:00
"less": "2.7.2",
"less-loader": "2.2.3",
2016-01-22 03:01:49 +08:00
"mkdirp": "0.5.1",
"style-loader": "0.13.1",
"svg-url-loader": "1.1.0",
2016-12-22 19:08:32 +08:00
"webpack": "1.14.0"
},
"ava": {
2016-12-30 20:45:43 +08:00
"files": [
"test/**/*.test.js"
],
"source": [
"./src/**/*"
],
"require": [
"babel-register"
],
2016-12-30 20:45:43 +08:00
"concurrency": 4,
"babel": "inherit"
}
}