forked from gregnb/mui-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.9 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
{
"name": "mui-datatables",
"version": "2.2.0",
"description": "Datatables for React using Material-UI",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server -d --progress --colors",
"test": "mocha --require babel-register test/**/*.test.js",
"docs:dev": "next docs",
"docs:build": "cross-env NODE_ENV=production next build docs",
"docs:export": "next export docs -o docs/export",
"docs:deploy": "npm run docs:build && npm run docs:export && firebase deploy",
"docs:start": "next start docs",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require babel-register test/*.js && nyc report --reporter=html | cat coverage/lcov.info | coveralls",
"coverage:html": "cross-env NODE_ENV=test nyc check-coverage --lines 55 --reporter=html --reporter=text mocha --require babel-register test/*.js && nyc report --reporter=html",
"prettier": "find src/ docs/ test/ -type f -name \"*.js\" ! -path \"*/.next/*\" | xargs prettier --write",
"lint": "eslint src",
"build": "cross-env NODE_ENV=production npm run prettier && rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregnb/mui-datatables.git"
},
"keywords": [
"material-ui",
"datatables",
"react"
],
"author": "gregnb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregnb/mui-datatables/issues"
},
"homepage": "https://github.com/gregnb/mui-datatables#readme",
"devDependencies": {
"@material-ui/core": "^3.2.0",
"@material-ui/icons": "^3.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"eslint": "^4.14.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"ignore-styles": "^5.0.1",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"next": "^5.1.0",
"nyc": "^11.3.0",
"prettier": "^1.9.2",
"prismjs": "^1.13.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"simulant": "^0.2.2",
"sinon": "^4.1.3",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5"
},
"peerDependencies": {
"@material-ui/core": "^3.2.0",
"@material-ui/icons": "^3.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash.clonedeep": "^4.5.0",
"lodash.find": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isundefined": "^3.0.1",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.0",
"prop-types": "^15.6.0",
"react-to-print": "^2.0.0-alpha.7"
},
"side-effects": false,
"nyc": {
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50,
"check-coverage": true,
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.test.js"
],
"sourceMap": false,
"instrument": false
}
}