-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.05 KB
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
{
"name": "react-flex-data",
"version": "2.0.2",
"description": "Simple minimal flex only table implementation",
"main": "lib/index.js",
"scripts": {
"build": "babel src/ --out-dir lib/",
"clean": "rimraf lib",
"dev": "babel src/ --out-dir lib/ --watch",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/wildlifela/react-flex-data"
},
"keywords": [
"react",
"tables",
"flex",
"data",
"minimal"
],
"files": [
"lib",
"src",
".babelrc"
],
"author": "WILDLIFE.LA",
"license": "ISC",
"homepage": "",
"peerDependencies": {
"react": "16.x.x",
"react-dom": "16.x.x"
},
"devDependencies": {
"babel-core": "6.3.26",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-lodash": "^2.2.2",
"babel-plugin-react-transform": "^2.0.0-beta1",
"babel-plugin-syntax-class-properties": "^6.3.13",
"babel-plugin-syntax-decorators": "^6.1.18",
"babel-plugin-syntax-jsx": "^6.1.18",
"babel-plugin-syntax-object-rest-spread": "^6.1.18",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators": "^6.1.18",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.2.0",
"envify": "^3.4.0",
"eslint": "^2.7.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-plugin-import": "^1.4.0",
"eslint-plugin-react": "^4.3.0",
"precss": "^1.4.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"rimraf": "^2.5.2"
},
"dependencies": {
"inline-style-prefixer": "^1.0.4",
"lodash": "^4.13.1"
}
}