-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
111 lines (111 loc) · 3.24 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@urbica/react-map-gl-cluster",
"version": "0.2.0",
"description": "React Cluster Component for Mapbox GL JS",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/urbica/react-map-gl-cluster.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/react-map-gl-cluster.cjs.js",
"module": "dist/react-map-gl-cluster.esm.js",
"files": [
"dist"
],
"scripts": {
"start": "styleguidist server",
"lint": "eslint src",
"test": "jest test",
"test:coverage": "jest test --coverage && codecov",
"flow": "flow check",
"flow:coverage": "flow-coverage-report -i 'src/**/*.js' -x 'src/setupTests.js' -x 'src/__mocks__/*' -x 'src/**/*.test.js' -t html",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"format": "prettier-eslint --write \"src/**/*.js\"",
"cz": "git-cz",
"release": "npm run build && standard-version",
"prepublishOnly": "npm run build",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "gh-pages -m 'auto commit [ci skip]' -d styleguide",
"postpublish": "npm run styleguide:build && npm run styleguide:deploy"
},
"peerDependencies": {
"@urbica/react-map-gl": "^1.0.0-alpha",
"supercluster": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@turf/random": "^6.0.2",
"@urbica/react-map-gl": "^1.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"codecov": "^3.6.1",
"commitizen": "^4.0.3",
"css-loader": "^3.4.2",
"cz-conventional-changelog": "^3.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"flow-bin": "^0.108.0",
"flow-coverage-report": "^0.6.1",
"flow-remove-types": "^2.121.0",
"gh-pages": "^2.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"mapbox-gl": "^1.9.0",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-styleguidist": "^9.2.0",
"rollup": "^1.25.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"standard-version": "^8.0.1",
"style-loader": "^1.1.3",
"supercluster": "^6.0.2",
"webpack": "^4.42.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"npm run lint",
"jest --findRelatedTests",
"git add"
]
}
}