forked from plotly/react-pivottable
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
83 lines (83 loc) · 2.89 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
{
"name": "react-pivottable-grouping",
"version": "0.1.0",
"description": "A React-based pivot table with grouping",
"main": "PivotTableUI.js",
"files": [
"PivotTable.js",
"PivotTableUI.js",
"PlotlyRenderers.js",
"TableRenderers.js",
"Utilities.js",
"PivotTable.js.map",
"PivotTableUI.js.map",
"PlotlyRenderers.js.map",
"TableRenderers.js.map",
"Utilities.js.map",
"pivottable.css",
"grouping.css"
],
"scripts": {
"start": "webpack-dev-server",
"test:eslint": "eslint src/*.js* && echo 'eslint: \\033[0;32m'PASS'\\033[0m'",
"test:eslint:fix": "eslint src/*.js* --fix",
"test:prettier": "prettier -l \"src/*.js*\" && echo 'prettier: \\033[0;32m'PASS'\\033[0m'",
"test:prettier:fix": "prettier --write \"src/*.js*\"",
"test:jest": "jest",
"test": "npm run test:eslint && npm run test:prettier && npm run test:jest",
"clean": "rm -rf __tests__ PivotTable.js* PivotTableUI.js* PlotlyRenderers.js* TableRenderers.js* Utilities.js* pivottable.css grouping.css",
"build": "npm run clean && cp src/pivottable.css . && cp src/grouping.css . && babel src --out-dir=. --source-maps --presets=env,react --plugins babel-plugin-add-module-exports",
"doPublish": "npm run build && npm publish",
"postpublish": "npm run clean",
"deploy": "webpack -p && mv bundle.js examples && cd examples && git init && git add . && git commit -m build && git push --force git@github.com:jjagielka/react-pivottable-grouping.git master:gh-pages && rm -rf .git bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjagielka/react-pivottable-grouping.git"
},
"keywords": [
"react",
"pivottable"
],
"author": "Jakub Jagielka <jjagielka@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jjagielka/react-pivottable-grouping/issues"
},
"homepage": "https://github.com/jjagielka/react-pivottable-grouping#readme",
"dependencies": {
"immutability-helper": "^2.3.1",
"prop-types": "^15.5.10",
"react-draggable": "^3.0.3",
"react-sortablejs": "^1.3.4",
"sortablejs": "^1.6.1"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^21.2.1",
"papaparse": "^4.3.6",
"prettier": "^1.8.2",
"react": ">=15.0.0",
"react-dom": ">=15.0.0",
"react-dropzone": "^4.2.1",
"react-hot-loader": "^3.1.1",
"react-plotly.js": "^2.0.0",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.3"
}
}