-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.92 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
{
"name": "@goongmaps/goong-sdk",
"version": "1.0.7",
"description": "A Javascript SDK working with Goong REST APIs",
"main": "index.js",
"files": [
"umd",
"lib",
"services"
],
"scripts": {
"format": "prettier --write '**/*.js'",
"lint-js": "eslint .",
"lint-md": "remark-preset-davidtheclark",
"lint": "run-p --aggregate-output lint-md lint-js",
"document-services": "documentation build 'services/*.js' --shallow --format md --config config/service-doc.yml > docs/services.md",
"bundle": "rollup --config ./rollup.config.js && uglifyjs umd/goong-sdk.js > umd/goong-sdk.min.js",
"prepublishOnly": "npm run bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goong-io/goong-sdk.git"
},
"bugs": {
"url": "https://github.com/goong-io/goong-sdk/issues"
},
"keywords": [
"goong",
"goong-js",
"goong-rest-api",
"directions",
"distance-matrix",
"autocomplete",
"geocoding",
"static-map"
],
"author": "Goong",
"license": "ISC",
"browser": {
"./lib/client.js": "./lib/browser/browser-client.js"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
],
"*.md": [
"remark-preset-davidtheclark",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"@mapbox/fusspot": "^0.4.0",
"eventemitter3": "^4.0.0",
"form-data": "^3.0.0",
"global": "^4.4.0",
"got": "^10.6.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"documentation": "^12.1.4",
"eslint": "^5.1.0",
"eslint-plugin-node": "^6.0.1",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"remark-preset-davidtheclark": "^0.8.1",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"uglify-js": "^3.4.4"
},
"engines": {
"node": ">=6"
}
}