-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.05 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
{
"name": "megadraft-related-articles-plugin",
"version": "0.2.5",
"description": "related articles plugin",
"main": "lib/plugin.js",
"style": "dist/css/plugin.css",
"dependencies": {
"megadraft": "^0.7.4",
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.6.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"es6-shim": "^0.35.0",
"eslint": "^4.4.1",
"eslint-plugin-react": "^7.2.0",
"eslint-watch": "^3.1.2",
"estraverse-fb": "^1.3.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^6.1.0",
"gulp-sass": "^4.1.0",
"gulp-util": "^3.0.8",
"jsdom": "^8.3.1",
"mocha": "^3.5.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {},
"scripts": {
"start": "gulp dev-server",
"test": "mocha --opts mocha.opts",
"test:watch": "mocha -w --opts mocha.opts",
"build:css": "gulp sass",
"build:lib": "babel src/ -d lib/",
"build:dist": "rimraf dist && webpack --config webpack.config.dist.js",
"build": "npm run build:lib && npm run build:dist && npm run build:css",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:watch": "esw -w src tests",
"watch": "babel -d lib/ src/ --watch"
},
"repository": {
"type": "git",
"url": ""
},
"files": [
"dist",
"lib"
],
"keywords": [
"megadraft",
"editor",
"react",
"draftjs"
],
"author": {
"author": "Globo.com",
"email": "",
"url": "https://github.com/globocom"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/globocom/megadraft-related-articles-plugin/issues"
},
"homepage": "https://github.com/globocom/megadraft-related-articles-plugin"
}