-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 3.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "editron",
"version": "10.0.0",
"description": "Editron - json-editor",
"main": "dist/editron.js",
"types": "dist/editron.d.ts",
"module": "dist/module/editron.js",
"homepage": "https://github.com/sueddeutsche/editron",
"bugs": "https://github.com/sueddeutsche/editron/issues",
"browserslist": [
"last 2 version"
],
"repository": {
"type": "git",
"url": "https://github.com/sueddeutsche/editron.git"
},
"scripts": {
"analyze": "NODE_ENV=production webpack --json | webpack-bundle-size-analyzer",
"build": "rm -rf build; webpack && webpack --config webpack.build.js",
"dist": "rm -rf dist; yarn dist:es5 && yarn dist:module",
"dist:es5": "NODE_ENV=production webpack && NODE_ENV=production webpack --config webpack.build.js",
"dist:module": "tsc --outDir dist/module",
"docs": "typedoc editron.ts --out docs/api",
"lint": "eslint src",
"prepublishOnly": "npm run release",
"release": "yarn dist",
"start": "webpack-dev-server --config webpack.serve.js",
"start:array": "APP=array webpack-dev-server --config webpack.serve.js",
"start:object": "APP=object webpack-dev-server --config webpack.serve.js",
"test": "webpack --config webpack.mocha.js --display errors-only",
"test:watch": "webpack --watch --config webpack.mocha.js --display minimal",
"watch": "watch 'yarn dist' src"
},
"pre-push": [
"test"
],
"keywords": [
"JSON-Editor",
"json",
"schema",
"jsonschema",
"editor",
"form"
],
"author": "Sascha Goldhofer <[email protected]> (https://github.com/sagold/)",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-transform-object-assign": "7.10.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "7.11.0",
"@types/mithril": "2.0.3",
"@types/mocha": "8.0.0",
"@types/sortablejs": "1.10.5",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"babel-loader": "8.1.0",
"chalk": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^7.7.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.0",
"eslint-plugin-promise": "^4.2.1",
"extract-loader": "^3.1.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"jsdom": "16.3.0",
"mocha": "8.0.1",
"node-sass": "^4.12.0",
"pre-push": "^0.1.1",
"sass-loader": "^8.0.0",
"sinon": "^7.5.0",
"source-map-support": "0.5.19",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "3.0.6",
"ts-loader": "8.0.0",
"ts-node": "8.10.2",
"typedoc": "0.20.16",
"typescript": "3.9.6",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.2.0",
"watch": "1.x",
"webpack": "^4.31.0",
"webpack-bundle-size-analyzer": "^3.0.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1",
"webpack-shell-plugin-next": "1.1.9"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"diff_match_patch": "0.1.x",
"jsondiffpatch": "0.2.x",
"webpack": "4.x"
},
"dependencies": {
"@rematch/core": "1.4.0",
"@technik-sde/foxy": "^1.0.0",
"core-js": "^3.8.2",
"gson-pointer": "^4.1.1",
"json-schema-library": "^5.2.1",
"jsondiffpatch": "^0.3.11",
"mithril": "2.x",
"mithril-material-forms": "^4.9.0",
"nanoevents": "5.1.8",
"sortablejs": "1.10.2",
"with-observable": "^1.2.0"
}
}