-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
142 lines (142 loc) · 4.39 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "@opuscapita/react-markdown",
"version": "2.3.14-SNAPSHOT",
"description": "React markdown editor component",
"scripts": {
"link-mode": "cross-env NODE_ENV=link webpack --config ./config/webpack.config.js",
"lint": "eslint src/client",
"lint-fix": "eslint --fix src/client",
"upload-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "rimraf ./.nyc_output ./coverage && cross-env nyc --reporter=lcov --reporter=text mocha --require config/test/mocha-setup.js --recursive src/**/*.spec.js --require ignore-styles",
"start": "cross-env NODE_ENV=development showroom-scan src && babel-node --presets es2015,stage-0 www/index",
"npm-build": "rimraf lib && cross-env NODE_ENV=production webpack --config ./config/webpack.build.config.js && cross-env NODE_ENV=production webpack --config ./config/webpack.build-min.config.js",
"npm-publish": "npm run npm-build && npm publish",
"grails-plugin-build": "rimraf build && npm run npm-build",
"grails-plugin-package": "npm run grails-plugin-build && grails-plugin-package",
"grails-plugin-install": "npm run grails-plugin-package && grails-plugin-install",
"grails-plugin-deploy": "npm run grails-plugin-package -- --release && grails-plugin-deploy --release",
"publish-release": "npm run grails-plugin-deploy && npm run npm-publish"
},
"license": "Apache-2.0",
"repository": "OpusCapita/react-markdown",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "lib/components/MarkdownInput.js",
"files": [
"lib",
"README.md"
],
"peerDependencies": {
"react": "^15.6.2 || ^16.2.0",
"react-dom": "^15.6.2 || ^16.2.0"
},
"devDependencies": {
"@opuscapita/npm-scripts": "2.0.0",
"@opuscapita/opuscapita-ui": "1.0.2-beta.4",
"@opuscapita/react-showroom-client": "1.3.0-beta.10",
"@opuscapita/react-showroom-server": "1.4.1",
"autoprefixer": "6.7.6",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "9.0.0",
"babel-loader": "6.3.2",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.23.0",
"chai": "4.1.2",
"chai-enzyme": "1.0.0-beta.0",
"compression": "1.6.2",
"core-js": "2.5.0",
"coveralls": "2.13.1",
"cross-env": "5.0.1",
"css-loader": "0.26.2",
"enzyme": "3.2.0",
"enzyme-adapter-react-15": "1.0.5",
"eslint": "5.6.0",
"eslint-config-opuscapita": "2.0.1",
"eslint-plugin-react": "7.7.0",
"express": "4.15.1",
"file-loader": "0.10.1",
"ignore-styles": "5.0.1",
"jsdom": "9.12.0",
"json-loader": "0.5.4",
"less": "2.7.2",
"less-loader": "2.2.3",
"mocha": "3.4.2",
"mocha-junit-reporter": "1.13.0",
"nyc": "11.1.0",
"postcss-loader": "1.3.3",
"postcss-modules": "0.6.4",
"progress-bar-webpack-plugin": "1.10.0",
"raw-loader": "0.5.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-test-renderer": "15.6.1",
"rimraf": "2.6.1",
"semver": "5.4.1",
"sinon": "2.1.0",
"sinon-chai": "2.9.0",
"source-map-loader": "0.1.6",
"style-loader": "0.13.2",
"url-loader": "0.5.8",
"webpack": "2.2.1",
"webpack-bundle-analyzer": "2.8.2",
"webpack-dev-middleware": "1.10.1",
"webpack-merge": "4.1.2",
"write-file-webpack-plugin": "3.4.2"
},
"dependencies": {
"classnames": "2.2.5",
"immutable": "3.8.1",
"lodash": "4.17.4",
"markdown-it": "^8.4.0",
"prismjs": "1.6.0",
"prop-types": "15.5.10",
"react-bootstrap": "0.31.2",
"react-click-outside": "3.0.1",
"slate": "0.24.0",
"slate-plain-serializer": "0.1.0",
"slate-react": "0.1.0"
},
"grails": {
"buildDir": "lib",
"standaloneFiles": {
"components/grails-plugin-markdown-input.js": "web-app/components/MarkdownInput.js"
}
},
"keywords": [
"react",
"contenteditable",
"doc",
"docs",
"document",
"edit",
"editor",
"immutable",
"markdown",
"paper",
"react",
"rich",
"rich-text",
"richtext",
"slate",
"text",
"wysiwyg"
],
"nyc": {
"include": [
"src/client/**/*.js"
],
"exclude": [
"**/*.spec.js",
"**/*.SCOPE*.js",
"**/demo/**/*.js"
],
"all": true
}
}