-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 881 Bytes
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
{
"name": "gmap-utils",
"version": "0.1.0",
"description": "Utilities for better Google Map experiences.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --copy-files && yarn min",
"min": "terser dist/index.js --compress --mangle --mangle-props regex=/^__/,reserved=[__esModule] --module --output dist/index.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rye Nguyen <ryenguyen7411@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.1",
"terser": "^4.4.0"
}
}