forked from dapriett/nativescript-google-maps-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.81 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
{
"name": "nativescript-google-maps-sdk",
"version": "2.5.0",
"description": "Google Maps SDK plugin for Nativescript",
"main": "map-view",
"typings": "map-view.d.ts",
"nativescript": {
"platforms": {
"android": "3.0.0",
"ios": "3.0.0"
}
},
"scripts": {
"cm": "git-cz",
"commitmsg": "validate-commit-msg",
"github-release": "conventional-github-releaser -p angular -n ./.github-release.json",
"clean": "rm -f *.js",
"build": "npm run clean && tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dapriett/nativescript-google-maps-sdk.git"
},
"keywords": [
"Nativescript",
"Google",
"Maps",
"API",
"SDK"
],
"author": "Dan Prietti <[email protected]> (https://github.com/dapriett)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dapriett/nativescript-google-maps-sdk/issues"
},
"homepage": "https://github.com/dapriett/nativescript-google-maps-sdk#readme",
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.2",
"tns-core-modules": "^3.0.0",
"tns-platform-declarations": "^3.0.1",
"typescript": "^2.3.2",
"validate-commit-msg": "^2.12.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message to match format. For help, execute 'npm run cm'\n",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"custom"
],
"warnOnFail": false,
"autoFix": false
}
}
}