-
Notifications
You must be signed in to change notification settings - Fork 535
/
package.json
110 lines (110 loc) · 2.99 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
{
"name": "react-mapbox-gl",
"version": "5.1.1",
"description": "A React binding of mapbox-gl-js",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint --project tsconfig.json",
"build": "npm run lint && npm run test && npm run build:commonjs && npm run build:esm",
"build:commonjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run clean && npm run build",
"version": "npm run build",
"postversion": "git push && git push --tags",
"prettify": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx example/src/**/*.ts example/src/**/*.tsx",
"precommit": "npm run prettify && cd example && node generateRaws.js",
"prepush": "npm run build",
"prepare": "echo \"preparing\" && npm run build"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"<rootDir>/src/jest/setupFile.ts"
],
"setupFilesAfterEnv": [
"<rootDir>/src/jest/setupTestFrameworkScriptFile.ts"
],
"browser": true,
"verbose": true
},
"files": [
"lib",
"lib-esm",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex3165/react-mapbox-gl.git"
},
"keywords": [
"mapbox",
"react",
"map",
"webgl",
"mapbox-gl",
"react-component"
],
"author": "Alexandre Rieux",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex3165/react-mapbox-gl/issues"
},
"homepage": "https://github.com/alex3165/react-mapbox-gl#readme",
"dependencies": {
"@turf/bbox": "4.7.3",
"@turf/helpers": "4.7.3",
"@types/supercluster": "^5.0.1",
"deep-equal": "1.0.1",
"supercluster": "^7.0.0"
},
"peerDependencies": {
"mapbox-gl": "^1.12.0",
"prop-types": "^15.6.2",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"devDependencies": {
"@types/core-js": "0.9.43",
"@types/deep-equal": "1.0.1",
"@types/enzyme": "3.1.14",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/geojson": "7946.0.4",
"@types/jest": "24.0.19",
"@types/mapbox-gl": "^1.12.8",
"@types/node": "8.0.29",
"@types/prettier": "1.10.0",
"@types/prop-types": "15.5.6",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/recompose": "0.27.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"husky": "^0.14.3",
"jest": "24.9.0",
"mapbox-gl": "^1.12.0",
"prettier": "1.10.2",
"prop-types": "15.6.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "16.5.2",
"recompose": "0.26.0",
"ts-jest": "24.1.0",
"tslint": "5.7.0",
"tslint-react": "3.2.0",
"typescript": "3.1.6"
}
}