forked from janjakubnanista/downsample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.87 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.87 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
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
{
"name": "downsample",
"version": "1.0.2",
"description": "Provides functions for time series data downsampling for visual representation",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.es.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"clean": "rm -rf dist",
"demo:build": "webpack --config webpack.demo.config.js --mode production",
"demo:clean": "rm -rf demo/dist",
"demo:upload": "gh-pages -d demo/dist",
"demo:watch": "webpack-dev-server --config webpack.demo.config.js --mode development",
"demo:publish": "yarn demo:clean && yarn demo:build && yarn demo:upload",
"prepack": "yarn test && yarn build && yarn demo:publish",
"lint": "eslint ./src ./demo --fix --ext .ts,.tsx,.js,.jsx",
"lint:build": "eslint ./dist --fix --ext .d.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/janjakubnanista/downsample.git"
},
"keywords": [
"downsample",
"data",
"downsampling",
"charts",
"charting",
"plot",
"plotting"
],
"author": "Jan Jakub Nanista <jan.jakub.nanista@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/janjakubnanista/downsample/issues"
},
"homepage": "https://github.com/janjakubnanista/downsample",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-typescript": "^7.8.3",
"@material-ui/core": "^1.3.1",
"@material-ui/lab": "^1.0.0-alpha.5",
"@types/jest": "^24.0.18",
"@types/node": "^10.5.1",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/recharts": "^1.0.23",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"@wessberg/rollup-plugin-ts": "^1.2.17",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"recharts": "^1.0.1",
"rollup": "^1.27.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"ts-jest": "^24.1.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "^3.8.1",
"webpack": "^4.15.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}(x)?": ["eslint --fix", "git add"]
}
}