-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "draft-js-mathjax-plugin",
"version": "1.3.4",
"description": "Math editing support for DraftJS Plugins Editor",
"author": {
"name": "Etienne Florent",
"url": "https://github.com/efloti"
},
"repository": {
"type": "git",
"url": "https://github.com/efloti/draft-js-mathjax-plugin.git"
},
"main": "lib/index.js",
"keywords": [
"editor",
"wysiwyg",
"math",
"teX",
"mathjax",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"peerDependencies": {
"draft-js-plugins-editor": ">=2.0.0-beta10",
"react": ">=15.0.0",
"draft-js": ">=0.10.0",
"immutable": "^3.8.1"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:js",
"build:js": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production babel --out-dir='lib' --ignore='__test__/*' src",
"lint": "eslint 'src/*.js' 'src/**/*.js'; exit 0"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3"
}
}