-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "gw2map",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "smiley <[email protected]>",
"license": "MIT",
"private": true,
"readme": "README.md",
"homepage": "https://github.com/gwmaps/gw2map",
"repository": {
"type": "git",
"url": "https://github.com/gwmaps/gw2map"
},
"bugs": {
"url": "https://github.com/gwmaps/gw2map/issues"
},
"scripts": {
"lint": "eslint src",
"build": "rollup -c rollup.config.dist.js",
"build-src": "rollup -c rollup.config.src.js",
"sass": "sass src/style/style.scss dist/style.css --no-source-map --style compressed",
"sass-src": "sass src/style/style.scss dist/style-src.css",
"img2base64": "php tools/img2base64.php dist/style.css",
"img2base64-src": "php tools/img2base64.php dist/style-src.css"
},
"dependencies": {
"leaflet": "^1.7"
},
"devDependencies": {
"@babel/core": "~7.12.10",
"@babel/plugin-proposal-class-properties": "~7.12.1",
"@babel/plugin-proposal-object-rest-spread": "~7.12.1",
"@babel/preset-env": "~7.12.11",
"@babel/register": "~7.12.10",
"@babel/eslint-parser": "~7.12.1",
"core-js": "~3.8.1",
"eslint": "~7.16.0",
"node": "~12.20.0",
"npm": "~6.14.10",
"rollup": "~2.35.1",
"@rollup/plugin-json": "~4.1.0",
"@rollup/plugin-babel": "~5.2.2",
"rollup-plugin-terser": "~7.0.2",
"sass": "~1.30.0"
}
}