-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "google-maps-promise",
"version": "2.1.0",
"description": "Wrapper for asynchronously load Google Maps API with Promise.",
"main": "./es5/index.js",
"module": "./es5-esm/index.js",
"types": "./es2015/index.d.ts",
"scripts": {
"test": "npm run lint",
"lint:scripts-project": "tslint -c tslint-project.json -p tsconfig.json",
"lint:scripts-other": "tslint \"{*.js,src/*.d.ts}\"",
"lint": "npm run lint:scripts-project && npm run lint:scripts-other",
"clean": "rimraf es2015 es5-esm es5",
"build": "tsc",
"build:es5": "tsc --target es5 --outDir ./es5-esm",
"build:umd": "rollup -c",
"build:all": "npm run build && npm run build:es5 && npm run build:umd",
"minify": "uglifyjs \"./es5/index.js\" -c -m -o \"./es5/google-maps-promise.min.js\"",
"watch": "npm run build -- --watch",
"prepublishOnly": "npm run lint && npm run clean && npm run build:all && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m18ru/google-maps-promise.git"
},
"keywords": [
"google",
"maps",
"asynchronous",
"browser",
"wrapper",
"promise",
"typescript"
],
"author": "Andrey Avol Volynkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m18ru/google-maps-promise/issues"
},
"homepage": "https://github.com/m18ru/google-maps-promise#readme",
"dependencies": {
"@types/googlemaps": "^3.30.7"
},
"devDependencies": {
"rimraf": "^2.6.2",
"rollup": "^0.56.3",
"tslint": "^5.9.1",
"tslint-config-avol": "^2.1.0",
"typescript": "^2.7.2",
"uglify-js": "^3.3.12"
}
}