forked from joshfrench/react-mobiledoc-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.38 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.38 KB
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
{
"name": "react-mobiledoc-editor",
"version": "0.8.1",
"description": "A Mobiledoc editor for React apps",
"repository": "joshfrench/react-mobiledoc-editor",
"homepage": "https://github.com/joshfrench/react-mobiledoc-editor",
"bugs": "https://github.com/joshfrench/react-mobiledoc-editor/issues",
"license": "BSD-3-Clause",
"contributors": [
"Josh French <joshfrench@gmail.com>",
"Garth Poitras <garth22@gmail.com>"
],
"keywords": [
"mobiledoc",
"mobiledoc-editor",
"react-component",
"react"
],
"main": "dist/main.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot --progress",
"lint": "eslint src",
"test": "karma start --single-run && npm run test:build",
"test:watch": "karma start",
"test:build": "npm run build && mocha test/build",
"posttest": "npm run lint",
"build": "rm -rf ./dist && webpack --mode production",
"prepublishOnly": "npm run build"
},
"dependencies": {
"prop-types": "^15.6.2"
},
"peerDependencies": {
"mobiledoc-kit": "^0.10.11 || ^0.11.0 || ^0.12.1",
"react": "^0.14.7 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.7 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"css-loader": "1.0.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.13.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-react": "^7.12.4",
"json-loader": "^0.5.7",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mobiledoc-kit": "^0.11.1",
"mocha": "^5.2.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.6.0",
"sinon": "^6.3.5",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}