-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "gmaps-signature",
"version": "2.0.0",
"description": "Signs Google Maps requests. Works with both general and Google Maps for Work.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"preversion": "npm run build -- --declaration && npm test",
"test": "mocha",
"coverage": "istanbul cover _mocha",
"sendcoverage": "if [ -f coverage/lcov.info ]; then cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js; fi",
"postcoverage": "if [ -f coverage/lcov.info ]; then node node_modules/.bin/map-coverage && mv coverage/lcov.info coverage/lcov-raw.info && mv coverage/lcov-mapped.info coverage/lcov.info; fi",
"typings": "typings install && typings prune",
"build": "tsc -p ."
},
"author": "Louay Alakkad <[email protected]>",
"license": "LGPL-3.0",
"keywords": [
"gmaps",
"sign",
"signature",
"api",
"google"
],
"dependencies": {
"debug": "^2.2.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"istanbul": "^0.4.1",
"map-coverage": "0.0.3",
"mocha": "^3.0.1",
"typescript": "^1.8.10",
"typings": "^1.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urbanmassage/gmaps-signature.git"
},
"bugs": {
"url": "https://github.com/urbanmassage/gmaps-signature/issues"
},
"homepage": "https://github.com/urbanmassage/gmaps-signature#readme"
}