-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 2.75 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
{
"name": "megadraft-table-plugin",
"version": "1.0.4",
"description": "Megadraft Table Plugin",
"main": "dist/megadraft-table-plugin.js",
"style": "dist/css/plugin.css",
"dependencies": {
"backstage-modal": "^0.3.2",
"prop-types": "^15.6.1",
"react-edit": "^6.2.0",
"reactabular-table": "8.12.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.6.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.1",
"chai": "^4.1.2",
"codeclimate-test-reporter": "^0.5.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"es6-shim": "^0.35.0",
"eslint": "^5.3.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"estraverse-fb": "^1.3.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^5.0.0",
"gulp-sass": "^4.0.1",
"jsdom": "^8.3.1",
"megadraft": "^0.5.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"react": "16.4.2",
"react-dom": "16.4.2",
"rimraf": "^2.5.2",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.2"
},
"peerDependencies": {},
"scripts": {
"start": "gulp dev-server",
"test": "NODE_ENV=test nyc mocha --opts mocha.opts",
"coverage": "nyc mocha report --reporter=text-lcov | codeclimate-test-reporter",
"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 --optimize-minimize",
"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": "[email protected]:globocom/megadraft-table-plugin.git"
},
"files": [
"dist",
"lib"
],
"keywords": [
"megadraft",
"backstage",
"editor",
"react",
"draftjs"
],
"author": {
"author": "Globo.com",
"url": "https://github.com/globocom/megadraft-table-plugin"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/globocom/megadraft-table-plugin"
},
"homepage": "https://github.com/globocom/megadraft-table-plugin",
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"text"
],
"require": [
"babel-register"
]
}
}