This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
forked from hyojin/material-ui-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.03 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
{
"name": "material-ui-datatables",
"version": "0.18.2",
"description": "An another React Data tables component.",
"main": "./src/index.js",
"scripts": {
"start": "gulp",
"test": "gulp test",
"test:coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "gulp eslint",
"clean:build": "gulp clean:build"
},
"repository": {
"type": "git",
"url": "https://github.com/hyojin/material-ui-datatables.git"
},
"keywords": [
"react",
"react-component",
"material design",
"material-ui",
"datatables"
],
"author": "Hyojin Kwak",
"license": "MIT",
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-tap-event-plugin": "^1.0.0 || ^2.0.0"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"material-ui": "0.18.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"browser-sync": "^2.17.5",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"del": "^2.2.2",
"enzyme": "^2.8.2",
"eslint": "^3.9.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-material-ui": "^1.0.1",
"eslint-plugin-react": "^6.6.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-copy": "0.0.2",
"gulp-eslint": "^3.0.1",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"jsdom": "^9.10.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.1.2",
"react": "^15.5.4",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.5.4",
"react-tap-event-plugin": "^2.0.0",
"sinon": "^1.17.7",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"webpack": "^1.13.3"
},
"browserify": {
"transform": [["babelify", {"presets": ["es2015", "react", "stage-1"]}]]
}
}