-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "qualtrics-google-map-lat-long",
"version": "2.0.1",
"description": "Embed a customizable Google Map in your Qualtrics survey to collect location data",
"scripts": {
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"build": "rimraf ./dist && tsc && npm run uglify",
"uglify": "uglifyjs ./dist/QualtricsGoogleMap.js -o ./dist/QualtricsGoogleMap.min.js --compress --mangle --source-map \"content='./dist/QualtricsGoogleMap.js.map',url='QualtricsGoogleMap.min.js.map'\"",
"prepublishOnly": "npm run lint && npm run postversion && npm run build",
"postversion": "cross-var node postVersion.js $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pkmnct/qualtrics-google-map-lat-long.git"
},
"keywords": [
"Qualtrics",
"Google Maps",
"Maps",
"Survey",
"Lat",
"Long",
"Latitude",
"Longitude",
"Map"
],
"author": "George W. Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/pkmnct/qualtrics-google-map-lat-long/issues"
},
"homepage": "https://github.com/pkmnct/qualtrics-google-map-lat-long#readme",
"devDependencies": {
"@types/googlemaps": "^3.39.11",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cross-var": "^1.1.0",
"eslint": "^7.5.0",
"rimraf": "^3.0.2",
"typescript": "^3.9.7",
"uglify-js": "^3.10.0"
},
"files": [
"dist/*",
"src/*"
]
}