forked from alex3165/react-mapbox-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
{
"name": "react-mapbox-gl",
"version": "1.4.0",
"description": "A React binding of mapbox-gl-js",
"main": "lib/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 && tsc",
"build:watch": "tsc --watch",
"prepublish": "npm run clean && npm run build",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"verbose": true
},
"files": [
"lib",
"es",
"src",
"vendor"
],
"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": {
"deep-equal": "^1.0.1",
"mapbox-gl": "^0.32.1",
"reduce-object": "^0.1.3",
"supercluster": "^2.2.0"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"@types/core-js": "=0.9.36",
"@types/enzyme": "^2.7.4",
"@types/jest": "^18.1.1",
"@types/mapbox-gl": "^0.29.0",
"@types/node": "=7.0.5",
"@types/react": "^15.0.6",
"@types/recompose": "^0.20.3",
"enzyme": "^2.7.1",
"jest": "^17.0.1",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.0",
"recompose": "^0.20.2",
"ts-jest": "^18.0.3",
"tslint": "^4.4.2",
"tslint-react": "^2.3.0",
"typescript": "^2.1.5"
}
}