-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.7 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-drafts",
"version": "1.0.3",
"description": "A React, DraftJS-based WYSIWYG editor",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"repository": "https://github.com/crossfield/react-drafts",
"directories": {
"test": "test"
},
"scripts": {
"start": "webpack-dev-server --config webpack/config.dev.js",
"clean": "rimraf ./dist",
"build": "NODE_ENV=production npm run build:cjs && npm run build:umd",
"build:cjs": "BABEL_ENV=commonjs babel ./src --out-dir lib",
"build:umd": "webpack --config webpack/config.dist.js ./css/index.css ./src/index.js ./dist/react-drafts.js",
"watch": "webpack -w --config webpack/config.dev.js",
"prepublish": "npm run clean && npm run build",
"test": "mocha-webpack --opts webpack/config.test.opts",
"test:browser": "webpack-dev-server --config webpack/config.browser-test.js",
"watch:test": "npm run test -- -w"
},
"keywords": [
"editor",
"text editor",
"draft-js",
"draftjs",
"draftjs editor",
"wysiwyg",
"react wysiwyg",
"react editor",
"blog editor",
"cms editor"
],
"authors": [
"@florapdx",
"Team Crossfield"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-cli": "^6.24.0",
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.2",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "^3.5.0",
"common-tags": "^1.4.0",
"css-loader": "^0.26.1",
"enzyme": "^2.7.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.10.0",
"mocha": "^3.2.0",
"mocha-loader": "^1.1.1",
"mocha-webpack": "^0.7.0",
"postcss-loader": "^1.3.3",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.5.4",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"draft-convert": "^1.4.2",
"draft-js": "^0.10.5",
"immutable": "^3.8.1",
"lodash.values": "^4.3.0",
"react-dropzone": "^3.13.1"
},
"peerDependencies": {
"react": "^15",
"react-dom": "^15"
}
}