-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "load-google-maps-api",
"version": "2.0.2",
"description": "A lightweight Promise-returning helper for loading the Google Maps JavaScript API",
"author": "Lim Yuan Qing",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/load-google-maps-api.git"
},
"devDependencies": {
"browserify": "^16.5.0",
"gzip-size-cli": "^3.0.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier-standard": "^16.2.1",
"rimraf": "^3.0.2",
"standard": "^14.3.1",
"tape": "^4.13.2",
"tape-run": "^6.0.1",
"terser": "^4.6.6"
},
"scripts": {
"clean": "rimraf '*.log'",
"fix": "prettier-standard '*.js'",
"lint": "standard '*.js'",
"test": "browserify test.js | tape-run",
"weight": "terser index.js --compress --mangle --toplevel | gzip-size"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard",
"prettier-standard"
]
},
"files": [
"index.js"
],
"keywords": [
"api",
"google",
"google-maps",
"google-maps-api",
"loader",
"maps",
"promise"
]
}