-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 988 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 988 Bytes
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
{
"name": "geoslack",
"version": "0.5.6",
"description": "Geolocate your team in Slack",
"main": "src/backend/server.js",
"homepage": "https://geoslack.ceriously.com",
"scripts": {
"start": "node src/backend/server.js",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-frontend.json",
"test": "tape tests/**/*.js",
"heroku-postbuild": "npm run build",
"release": "npm version patch && git push --follow-tags && npm publish"
},
"dependencies": {
"@types/express": "^4.11.0",
"@types/googlemaps": "^3.30.5",
"@types/node": "^11.9.6",
"@types/tape": "^4.2.31",
"body-parser": "^1.18.2",
"ejs": "^2.5.7",
"express": "^4.16.2",
"typescript": "^3.0.1"
},
"devDependencies": {
"tape": "^4.8.0"
},
"engines": {
"node": "8.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/styfle/geoslack"
},
"keywords": [
"geolocation",
"slack",
"location"
],
"license": "MIT"
}