forked from draft-js-plugins/draft-js-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.25 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
{
"name": "draft-js-plugins",
"version": "0.0.0",
"description": "A Plugin Architecture on top of Draft.JS",
"author": {
"name": "Nik Graf",
"email": "nik@nikgraf.com",
"url": "http://www.nikgraf.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nikgraf/draft-js-plugins.git"
},
"main": "lib/index.js",
"keywords": [
"editor",
"wysiwyg",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"scripts": {
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --require testHelper.js **/__test__/*.js",
"test:watch": "npm test -- --watch",
"lint": "npm run lint:eslint && npm run lint:flow",
"lint:eslint": "eslint --rule 'mocha/no-exclusive-tests:2' ./",
"lint:eslint:fix": "eslint --fix --rule 'mocha/no-exclusive-tests:2' ./",
"lint:flow": "flow status",
"lint:staged": "lint-staged",
"alex": "alex README.md"
},
"lint-staged": {
"lint:eslint": "*.js"
},
"pre-commit": "lint:staged",
"devDependencies": {
"alex": "^3.1.0",
"animateplus": "^1.4.0",
"autoprefixer": "^6.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-webpack-loaders": "^0.7.1",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"cheerio": "^0.20.0",
"css-loader": "^0.25.0",
"css-modules-require-hook": "^4.0.2",
"dirty-chai": "^1.2.2",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "11.0.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-mocha": "^4.5.1",
"eslint-plugin-react": "^6.2.0",
"estraverse-fb": "^1.3.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.32.0",
"jest-cli": "^15.1.1",
"jsdom": "^9.5.0",
"lint-staged": "^3.0.1",
"mocha": "^3.0.2",
"multer": "^1.2.0",
"postcss-loader": "^0.13.0",
"pre-commit": "^1.1.3",
"prismjs": "^1.5.1",
"react-addons-pure-render-mixin": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-router": "^2.8.0",
"react-static-webpack-plugin": "^1.2.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.1",
"superagent": "^2.2.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.7.0",
"webpack-hot-middleware": "=2.12.2"
},
"license": "MIT",
"dependencies": {
"decorate-component-with-props": "^1.0.2",
"draft-js": ">=0.9.1",
"emojione": "^2.2.6",
"eslint-plugin-import": "^1.14.0",
"find-with-regex": "^1.0.2",
"immutable": "^3.8.1",
"linkify-it": "2.0.0",
"loader-utils": "^0.2.15",
"lodash.escaperegexp": "^4.1.2",
"lodash.keys": "^4.2.0",
"react": ">=15.3.1",
"react-dom": ">=15.3.1",
"tlds": "1.159.0",
"union-class-names": "^1.0.0",
"webpack": "^1.13.2"
}
}