-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 2.17 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
54
55
56
57
{
"name": "svl",
"version": "5.5.4",
"description": "Street Vector Layer (SVL)\r The Road layer for the Waze editors, made by editors.",
"main": "svl.user.js",
"watch": {
"debug": [
"svl.user.js",
"gcc-externs.js"
],
"compile": [
"svl.user.js",
"gcc-externs.js"
],
"compile-pp": [
"svl.user.js",
"gcc-externs.js"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "npx google-closure-compiler --js=svl.user.js --js gcc-externs.js --js_output_file=install.user.js --language_in=ECMASCRIPT_2020 --language_out=ECMASCRIPT_2020 --warning_level=VERBOSE --compilation_level=WHITESPACE_ONLY",
"compile": "npx google-closure-compiler --js=svl.user.js --js gcc-externs.js --js_output_file=install.user.js --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE",
"compile-pp": "npx google-closure-compiler --formatting=pretty_print --js=svl.user.js --js gcc-externs.js --js_output_file=install.user.js --compilation_level=ADVANCED_OPTIMIZATIONS --warning_level=VERBOSE",
"concat": "cross-env concat -o releases\\release-%npm_package_version%.user.js header.js install.user.js",
"build": "npm run compile && npm run concat",
"release": "cross-env replace-in-files --regex='\\d+\\.\\d+\\.\\d+' --replacement=%npm_package_version% header.js && git add header.js && npm run build",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bedo2991/svl.git"
},
"keywords": [],
"author": "Francesco Bedini",
"license": "ISC",
"bugs": {
"url": "https://github.com/bedo2991/svl/issues"
},
"homepage": "https://github.com/bedo2991/svl#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/eslint-plugin": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@eslint/js": "^9.5.0",
"concat": "^1.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.6.0",
"google-closure-compiler": "^20240317.0.0",
"npm-watch": "^0.13.0",
"replace-in-files-cli": "^2.2.0"
}
}