This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "geobatch",
"description": "Batch geocode addresses from multiple sources.",
"version": "1.4.3",
"license": "MIT",
"author": {
"name": "Robert Katzki",
"email": "katzki@ubilabs.net",
"url": "http://ubilabs.net/"
},
"contributors": [
{
"name": "Patrick Mast",
"email": "mast@ubilabs.net",
"url": "http://ubilabs.net/"
},
{
"name": "Keno Schwalb",
"email": "schwalb@ubilabs.net",
"url": "https://www.ubilabs.net/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ubilabs/node-geobatch"
},
"main": "dist",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run lint && npm run build",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register",
"generatechangelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"commitchangelog": "git add CHANGELOG.md && git commit -m \"chore(changelog): new version\" && git push origin master",
"changelog": "npm run generatechangelog && git reset package.json && npm run commitchangelog && git add package.json",
"release": "git reset && release-it",
"lint": "eslint ./src ./test"
},
"dependencies": {
"amp-is-empty": "^1.0.2",
"cyclist": "^1.0.1",
"flat-file-db": "^1.0.0",
"googlemaps": "^1.6.0",
"into-stream": "^2.0.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"conventional-changelog-cli": "^1.2.0",
"eslint": "^2.13.1",
"lie": "^3.0.1",
"mocha": "^2.5.0",
"release-it": "^2.4.0",
"should": "^9.0.0",
"sinon": "^1.17.1",
"stream-assert": "^2.0.3"
}
}