-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 2.41 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
{
"name": "md-draft-js",
"version": "2.3.1",
"description": "Markdown text editor for React",
"main": "lib",
"scripts": {
"lint": "eslint src test webpack.config.js webpack.site.config.js",
"lint:fix": "eslint src test webpack.config.js webpack.site.config.js --fix",
"build": "rm -rf lib && babel src --out-dir lib/ --source-maps true",
"build:site": "NODE_ENV=production webpack --config webpack.site.config.js -p",
"start": "webpack-dev-server --content-base playground",
"test": "npm run lint && mocha --compilers js:babel-core/register --recursive",
"tdd": "mocha --compilers js:babel-core/register --recursive --watch",
"preversion": "npm test && npm run build",
"version": "npm run build:site",
"postversion": "git push origin HEAD && git push origin $(git describe --tags) && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mulesoft/md-draft-js.git"
},
"author": "MuleSoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/mulesoft/md-draft-js/issues"
},
"homepage": "https://github.com/mulesoft/md-draft-js",
"dependencies": {
"is-key-combo": "^1.0.3",
"parse-link-input": "^1.1.0",
"prop-types": "^15.5.7"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-cli": "^6.11.4",
"babel-core": "^6.7.4",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.0",
"babel-root-import": "^4.1.0",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-import-resolver-babel-root-import": "0.0.2",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.4",
"mocha": "^3.4.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-hot-loader": "^4.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0"
}
}