forked from json-editor/json-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@json-editor/json-editor",
"title": "JSONEditor",
"description": "JSON Schema based editor",
"version": "2.0.0-alpha.0",
"main": "dist/jsoneditor.js",
"module": "dist/jsoneditor.commonjs2.js",
"author": {
"name": "Jeremy Dorn",
"email": "[email protected]",
"url": "http://jeremydorn.com"
},
"bugs": {
"url": "https://github.com/json-editor/json-editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/json-editor/json-editor.git"
},
"keywords": [
"json",
"schema",
"jsonschema",
"editor"
],
"scripts": {
"prepare": "npm run build",
"build": "npm run build.prod && npm run build.nonmin",
"build.prod": "webpack --config config/webpack.prod.js --progress --profile --bail",
"build.nonmin": "webpack --config config/webpack.nonmin.js --progress --profile --bail",
"build.dev": "webpack --config config/webpack.dev.js --progress --profile --bail",
"watch": "webpack --config config/webpack.nonmin.js --watch",
"debug": "webpack-dev-server --config config/webpack.dev.js --progress",
"debug.nonmin": "webpack-dev-server --config config/webpack.nonmin.js --progress",
"test": "karma start config/karma.conf.js --browsers Chrome --log-level debug",
"test-headless": "karma start config/karma.conf.js --singleRun true --browsers ChromeHeadless",
"serve-test": "http-server --p 9001",
"docker-test": "cd tests && docker-compose run --rm node npm run build && docker-compose up -d && docker-compose ps && docker-compose run --rm codeceptjs codeceptjs run-multiple basic --invert --grep @optional",
"preversion": "npm run test-headless && npm run docker-test",
"postversion": "git push && git push --tags && npm publish ./ --access public",
"winserver": "cd tests && start cmd /c npm run serve-test .",
"cp:test": "codeceptjs run --steps --invert --grep @optional",
"cp:testmocha": "codeceptjs run --steps --reporter mochawesome --invert --grep @optional",
"cp:fulltest": "codeceptjs run --steps",
"cp:fulltestmocha": "codeceptjs run --steps --reporter mochawesome",
"eslint.fix": "eslint -c ./.eslintrc src/**/*.js --fix",
"eslint": "eslint -c ./.eslintrc src/**/*.js"
},
"license": "MIT",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"ace-builds": "^1.4.5",
"clean-webpack-plugin": "^3.0.0",
"cleave.js": "^1.5.3",
"codeceptjs": "^2.3.0",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-loader": "^2.2.1",
"http-server": "^0.11.1",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"jodit": "^3.2.55",
"jquery": "^3.4.1",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.0",
"mochawesome": "^4.1.0",
"null-loader": "^3.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"puppeteer": "^1.19.0",
"puppeteer-firefox": "^0.5.0",
"remove-strict-webpack-plugin": "^0.1.2",
"requirejs": "^2.3.6",
"sceditor": "^2.1.3",
"standard": "^11.0.1",
"style-loader": "^1.0.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {}
}