forked from cosmocode/dokuwiki-plugin-prosemirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "prosemirror",
"version": "1.0.0",
"description": "prosemirror Plugin for DokuWiki",
"main": "index.js",
"dependencies": {
"prosemirror-commands": "^1.0.7",
"prosemirror-history": "^1.0.4",
"prosemirror-inputrules": "^1.0.4",
"prosemirror-keymap": "^1.0.1",
"prosemirror-model": "^1.7.0",
"prosemirror-schema-basic": "^1.0.1",
"prosemirror-schema-list": "^1.0.3",
"prosemirror-state": "^1.2.3",
"prosemirror-tables": "^0.8.0",
"prosemirror-transform": "^1.1.3",
"prosemirror-view": "^1.9.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"stylelint": "^9.6.0",
"stylelint-config-rational-order": "^0.0.2",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"scripts": {
"dev": "webpack -d",
"watch": "webpack -dw",
"test": "jest",
"build": "webpack -p",
"eslint": "NODE_ENV=production eslint script/",
"stylelint": "stylelint *.less --syntax less",
"lint": "yarn eslint && yarn stylelint"
},
"jest": {
"verbose": true
},
"author": "",
"license": "GPL-2.0"
}