-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.89 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
{
"name": "draft-js-video-plugin",
"version": "0.0.4",
"description": "video Plugin for DraftJS",
"author": {
"name": "Anchen li"
},
"repository": {
"type": "git",
"url": "https://github.com/mzbac/draft-js-video-plugin"
},
"main": "lib/index.js",
"keywords": [
"editor",
"video",
"draft",
"react",
"ux",
"components",
"widget",
"react-component"
],
"scripts": {
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --require testHelper.js **/__test__/*.js",
"clean": "./node_modules/.bin/rimraf lib",
"build": "npm run clean && npm run build:js",
"build:js": "WEBPACK_CONFIG=$(pwd)/webpack.config.js BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production ./node_modules/.bin/babel --out-dir='lib' --ignore='__test__/*' src",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"draft-js": ">=0.8.1",
"immutable": ">=3.8.1",
"react": ">=15.2.1",
"react-dom": ">=15.2.1"
},
"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-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",
"cz-conventional-changelog": "^1.1.6",
"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": "^15.2.1",
"react-addons-pure-render-mixin": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}