-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "react-pivot",
"description": "React-Pivot is a data-grid component with pivot-table-like functionality for data display, filtering, and exploration.",
"version": "4.4.0",
"author": "David Guttman <[email protected]> (http://davidguttman.com/)",
"browser": "index.jsx",
"browserify": {
"transform": [
"reactify",
"envify",
"cssify"
]
},
"bugs": {
"url": "https://github.com/davidguttman/react-pivot/issues"
},
"dependencies": {
"create-react-class": "^15.6.0",
"cssify": "^0.7.0",
"dataframe": "^2.0.1",
"envify": "^3.2.0",
"lodash": "^4.1.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"reactify": "^1.0.0",
"wildemitter": "^1.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^8.1.3",
"budo": "^8.0.3",
"faker": "^2.1.2",
"uglify-js": "^2.4.16"
},
"directories": {
"example": "example"
},
"homepage": "https://github.com/davidguttman/react-pivot",
"keywords": [
"data",
"excel",
"grid",
"pagination",
"pivot",
"react",
"react-component",
"sort"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/davidguttman/react-pivot.git"
},
"scripts": {
"example": "budo example/demo.jsx --live",
"example-basic": "budo example/basic.jsx",
"example-persist": "budo example/persist.js",
"dist": "npm run remove-dist && npm run build-standalone",
"remove-dist": "rm dist/*.js",
"build-standalone": "NODE_ENV=production browserify lib/umd.js | uglifyjs -mc > dist/react-pivot-standalone-${npm_package_version}.min.js"
}
}