This repository has been archived by the owner on May 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
122 lines (122 loc) · 3.73 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
113
114
115
116
117
118
119
120
121
122
{
"name": "@accordproject/markdown-editor",
"version": "0.9.17",
"description": "A rich text editor that can read and write markdown text. Based on Slate.js.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/accordproject/markdown-editor.git"
},
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --mode development --config webpack.config.js",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production --config webpack.config.prod.js",
"build:dev": "webpack --config webpack.config.js",
"lint": "npm run lint:js && npm run lint:stylus",
"lint:js": "eslint --ext .js --ext .jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --ext .js --ext .jsx --ignore-path .gitignore --fix .",
"lint:stylus": "stylint --config .stylintrc ./src/stylesheets",
"pkgcheck": "node ./scripts/pkgcheck.js",
"pkgstamp": "node ./scripts/pkgstamp.js",
"pkgbump": "node ./scripts/pkgbump.js && node ./scripts/pkgcheck.js --fix",
"pkgset": "node ./scripts/pkgset.js",
"depcheck": "node ./scripts/depcheck.js"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"collectCoverageFrom": [
"src/SlateAsInputEditor/*.js",
"!**/node_modules/**",
"!**/travis/**"
]
},
"keywords": [
"accord",
"markdown",
"slate.js",
"rich text"
],
"author": "accordproject.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/accordproject/markdown-editor/issues"
},
"homepage": "https://github.com/accordproject/markdown-editor",
"peerDependencies": {
"react": ">= 16.13.0",
"react-dom": ">= 16.13.0",
"slate": "0.57.x",
"slate-react": "0.57.x",
"styled-components": ">= 4"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"@clausehq/eslint-config": "^0.1.8",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"moment-mini": "2.22.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^3.4.0",
"semver": "6.1.1",
"slate": "^0.57.1",
"slate-react": "^0.57.1",
"style-loader": "^1.1.3",
"styled-components": "^4.4.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@accordproject/markdown-html": "^0.11.2",
"@accordproject/markdown-slate": "^0.11.2",
"@babel/runtime": "^7.8.7",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"image-extensions": "^1.1.0",
"is-hotkey": "^0.1.6",
"is-url": "^1.2.4",
"prop-types": "^15.7.2",
"react-textarea-autosize": "^7.1.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"slate-history": "^0.57.1",
"slate-hyperscript": "^0.57.1"
}
}