-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.39 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
{
"name": "geohub-client",
"version": "0.1.0",
"description": "A drawing component for Mapbox GL JS",
"homepage": "https://github.com/geohub-plattform/geohub-client",
"author": "grundid",
"main": "index.js",
"license": "ISC",
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"debug-test": "node $NODE_DEBUG_OPTION test/*.active.test.js",
"active-test": "tape -r babel-register test/*.active.test.js",
"geohub-test": "tape -r babel-register test/*.test.js",
"test": "npm run lint && npm run tape",
"lint": "eslint --no-eslintrc -c .eslintrc index.js src test",
"tape": "tape -r ./test/mock-browser.js -r babel-register test/*.test.js",
"coverage": "NODE_ENV=test nyc --reporter html npm run tape && opener coverage/index.html",
"build": "NODE_ENV=production browserify index.js --standalone GeoHubClient > dist/geohub-client.js",
"prepublish": "mkdir -p dist && NODE_ENV=production browserify index.js --standalone GeoHubClient | uglifyjs -c -m > dist/geohub-client.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/geohub-plattform/geohub-client.git"
},
"bugs": {
"url": "https://github.com/mapbox/mapbox-gl-draw/issues"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"devDependencies": {
"@turf/centroid": "^4.0.0",
"babel-core": "^6.9.1",
"babel-eslint": "^7.1.0",
"babel-plugin-__coverage__": "^11.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.5.2",
"babelify": "^7.2.0",
"browserify": "^14.1.0",
"browserify-middleware": "^7.0.0",
"envify": "^4.0.0",
"eslint": "^7.1.0",
"eslint-config-mourner": "^2.0.1",
"express": "^4.13.4",
"mapbox-gl": "^0.36.0",
"mapbox-gl-js-mock": "^0.20.0",
"mock-browser": "^0.92.10",
"nyc": "^10.2.0",
"opener": "^1.4.1",
"sinon": "^2.1.0",
"synthetic-dom-events": "^0.3.0",
"tape": "^4.0.0",
"uglify-js": "^2.4.23",
"unassertify": "^2.0.3"
},
"peerDependencies": {
"mapbox-gl": ">=0.37.0"
},
"dependencies": {
"@mapbox/togeojson": "^0.16.0",
"@turf/line-split": "4.5.2",
"@turf/turf": "4.5.2",
"bootstrap": "^4.0.0-beta",
"cheap-ruler": "^2.5.0",
"clone-deep": "^0.3.0",
"eventbusjs": "^0.2.0",
"jquery": "^3.2.1",
"popper.js": "^1.12.3",
"strxml": "1.0.0",
"tokml": "^0.4.0"
}
}