-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "editron-script-editor",
"version": "4.0.0",
"description": "Editron - script editor for html, js and css",
"main": "scripteditor/index.js",
"homepage": "https://github.com/sueddeutsche/editron-script-editor",
"bugs": "https://github.com/sueddeutsche/editron-script-editor/issues",
"repository": {
"type": "git",
"url": "https://github.com/sueddeutsche/editron-script-editor.git"
},
"scripts": {
"test": "ava",
"build": "rm -rf build; webpack",
"dist": "rm -rf dist; NODE_ENV=production webpack",
"release": "npm run test && npm run dist",
"prepublishOnly": "npm run test && npm run dist",
"postinstall": "npm --prefix node_modules/editron install"
},
"keywords": [],
"author": "Süddeutsche Zeitung Digitale Medien GmbH",
"contributors": [
"Sascha Goldhofer <[email protected]> (https://github.com/sagold/)",
"Benjamin Urban <[email protected] (https://github.com/benurb/)"
],
"license": "MIT",
"devDependencies": {
"ava": "^0.22.0",
"browser-env": "^3.2.0",
"editron": "6.x",
"eslint": "^3.19.0",
"gson-pointer": "3.x",
"mithril": "1.x",
"mithril-material-forms": "2.x",
"sinon": "^3.2.1",
"webpack": "^4.31",
"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"
},
"ava": {
"files": [
"test/**/*.test.js"
],
"require": [
"editron/test/support/setupBrowserEnv.js"
],
"verbose": true
},
"files": [
"dist",
"scripteditor"
]
}