-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "medit",
"version": "1.0.0",
"description": "A creative WYSIWYG rich text editor for mobile device.",
"main": "medit.js",
"scripts": {
"dev": "webpack --config webpack.config.dev.js --watch",
"build": "webpack --config webpack.config.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/echosoar/medit.git"
},
"keywords": [
"WYSIWYG",
"mobile",
"rich",
"text",
"editor"
],
"author": "echosoar",
"license": "ISC",
"bugs": {
"url": "https://github.com/echosoar/medit/issues"
},
"homepage": "https://medit.js.org",
"devDependencies": {
"babel-plugin-transform-es2015-classes": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "~3.4.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "~4.2.3",
"optimist": "^0.6.1",
"resolve-url-loader": "^1.6.1",
"url-loader": "~0.5.7",
"webpack": "~1.12.14"
},
"dependencies": {
"autoprefixer": "~6.3.4",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "~6.2.4",
"babel-plugin-transform-object-rest-spread": "~6.6.5",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.14.0",
"css-loader": "~0.23.1",
"file-loader": "~0.8.5",
"less": "~2.6.1",
"less-loader": "~2.2.2",
"loader-utils": "~0.2.12",
"md5": "~2.0.0",
"node-sass": "^3.6.0",
"postcss-loader": "~0.8.2",
"precss": "~1.4.0",
"sass-loader": "^3.2.0",
"style-loader": "~0.13.0"
}
}