-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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": "static-google-map",
"version": "0.0.5",
"main": "dist/static-google-map.cjs.js",
"module": "dist/static-google-map.esm.js",
"browser": "dist/static-google-map.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/DaddyWarbucks/static-google-map.git"
},
"sideEffects": false,
"author": "Beau Shaw <DaddyWarbucks>, Akinmade Bond <[email protected]>",
"typings": "./typings/index.d.ts",
"license": "MIT",
"keywords": [
"static google map",
"google map",
"google map url builder",
"google map url generator"
],
"dependencies": {},
"devDependencies": {
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-1": "6.24.1",
"jest": "21.2.1",
"raf": "3.4.1",
"rollup": "0.68.2",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "8.2.3",
"rollup-plugin-node-resolve": "3.4.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"prepublish": "yarn build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"files": [
"dist",
"typings/index.d.ts"
],
"jest": {
"setupFiles": [
"raf/polyfill"
]
}
}