-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 2.47 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "downsample",
"version": "1.4.0",
"description": "Provides functions for time series data downsampling for visual representation",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"clean": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:dist": "eslint dist --ext .d.ts --fix",
"lint:fix": "npm run lint --fix",
"release": "./scripts/release.sh -d",
"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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/janjakubnanista/downsample/issues"
},
"files": [
"index.js",
"index.d.ts",
"**/*.js",
"**/*.d.ts"
],
"homepage": "https://github.com/janjakubnanista/downsample",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"@wessberg/rollup-plugin-ts": "^1.2.17",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rollup": "^2.14.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"ts-type-checked": "^0.3.5",
"ttypescript": "^1.5.10",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/*.spec.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/test",
"/node_modules/"
],
"globals": {
"ts-jest": {
"compiler": "ttypescript"
}
}
},
"lint-staged": {
"*.{js,ts}(x)?": [
"eslint --fix"
]
}
}