-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "editron-wysiwyg-editor",
"version": "4.0.1",
"description": "WYSIWYG Editor for the Editron json-editor",
"main": "wysiwygeditor/index.js",
"homepage": "https://github.com/sueddeutsche/editron-wysiwyg-editor",
"bugs": "https://github.com/sueddeutsche/editron-wysiwyg-editor/issues",
"repository": {
"type": "git",
"url": "https://github.com/sueddeutsche/editron-wysiwyg-editor.git"
},
"scripts": {
"test": "ava",
"build": "webpack",
"dist": "NODE_ENV=production webpack",
"devdist": "npm run build && mkdir -p dist && mv build/* dist/",
"release": "npm run dist",
"prebulishOnly": "npm run test && npm run dist",
"postinstall": "npm --prefix node_modules/editron install"
},
"keywords": [],
"author": "Sascha Goldhofer <[email protected]> (https://github.com/sagold/)",
"license": "ISC",
"devDependencies": {
"ava": "^0.22.0",
"browser-env": "^3.2.0",
"editron": "^6.0.1",
"eslint": "^3.19.0",
"gson-pointer": "3.x",
"mithril": "1.x",
"mithril-material-forms": "2.x",
"sinon": "^3.2.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"codemirror": "^5.25.2"
},
"peerDependencies": {
"editron": "6.x",
"mithril": "1.x",
"mithril-material-forms": "2.x",
"gson-pointer": "3.x",
"webpack": "4.x"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"editron/test/support/setupBrowserEnv.js"
],
"verbose": true
}
}