-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "react-pell2",
"version": "1.0.8",
"description": "React wrapper for Pell editor",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"dev": "webpack --config ./examples/webpack.config.js",
"lint": "eslint src || exit 0",
"build": "cross-env babel src --out-dir lib",
"copy": "cp src/style.css lib/",
"prepublish": "npm run clean && npm run build && npm run copy"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lassegit/react-pell2.git"
},
"keywords": [
"WYSIWYG",
"editor",
"react"
],
"author": "Lasse",
"license": "MIT",
"bugs": {
"url": "https://github.com/lassegit/react-pell2/issues"
},
"homepage": "https://github.com/lassegit/react-pell2",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.13.0",
"cross-env": "^3.0.0",
"css-loader": "^0.28.4",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^3.0.0",
"rimraf": "^2.5.4",
"style-loader": "^0.18.2",
"webpack": "^3.4.1"
},
"dependencies": {
"pell": "^0.7.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1"
}
}