-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
95 lines (95 loc) · 2.74 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
{
"name": "functional-data-grid",
"version": "1.2.19",
"description": "Functional Data Grid",
"main": "dist/FunctionalDataGrid.cjs.js",
"module": "dist/FunctionalDataGrid.esm.js",
"browser": "dist/FunctionalDataGrid.umd.js",
"author": "Michele Lugano <[email protected]> (https://www.linkedin.com/in/mlugano/)",
"dependencies": {
"debounce": "^1.0.2",
"emotion": "^10.0.14",
"immutable": "~3.8.2",
"react-popper": "^1.0.0",
"react-virtualized": "^9.18.5",
"uuid": "^3.3.2"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.0",
"babel-jest": "^24.8.0",
"babel-loader": "8.0.6",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"css-loader": "3.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "6.0.1",
"eslint-loader": "2.2.0",
"eslint-plugin-flowtype": "3.11.1",
"eslint-plugin-react": "^7.0.0",
"file-loader": "4.0.0",
"flow-bin": "0.102.0",
"flow-typed": "2.5.2",
"graceful-fs": "4.2.0",
"jest": "^24.8.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "^2.6.2",
"rollup": "^1.16.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"codecov": "yarn run coverage && codecov",
"prepublish": "yarn run build && yarn run test",
"clean": "rimraf dist",
"build": "yarn run clean && rollup -c",
"start": "rollup -c -w",
"install-flow-def": "flow-typed install"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/energydrink9/functional-data-grid.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^react(.*)$": "<rootDir>/vendor/react-master$1",
"^config$": "<rootDir>/configs/app-config.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/functional-data-grid"
}
}