-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "react-matrix",
"version": "1.0.0",
"description": "Small react component to draw an exel like matrix with column resize and fixed left columns",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"lint": "eslint ./client --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/fdesantis/reactmatrix.git"
},
"keywords": [
"react",
"reactjs",
"matrix",
"excel"
],
"author": "Filippo De Santis <filippo.desantis@gmail.com>",
"license": "MIT",
"homepage": "https://bitbucket.org/fdesantis/reactmatrix#readme",
"dependencies": {
"lodash.get": "^4.4.2",
"lodash.isfunction": "^3.0.8",
"lodash.isstring": "^4.0.1",
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.0.1",
"react-test-renderer": "^15.6.1",
"webpack": "^3.5.5"
}
}