-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "jonnitto.googlemaps",
"description": "Render files for GoogleMaps",
"license": "GPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/jonnitto/Jonnitto.GoogleMaps.git"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not ie <= 10",
"not ie_mob <= 10",
"not bb <= 10",
"not op_mob <= 12.1"
],
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"postcss": "^8.4.31",
"postcss-cli": "^9.1.0",
"postcss-sort-media-queries": "^4.2.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.11"
},
"scripts": {
"js": "rollup --config",
"css:scss": "sass --embed-sources Resources/Private/Styles/GoogleMaps.scss Resources/Public/Main.css",
"css:postcss": "postcss Resources/Public/Main.css --map --replace",
"css": "yarn css:scss && yarn css:postcss",
"build": "rm -rf Resources/Public/*;yarn css | yarn js",
"start": "yarn build"
}
}