-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "matcher-cli",
"version": "0.9.0",
"description": "Node-based CLI utility for matcher.js 🎈",
"main": "matcher.js",
"scripts": {
"build:lint": "node_modules/eslint/bin/eslint.js --fix matcher.js src",
"build:terser": "node_modules/terser/bin/uglifyjs matcher.js --output matcher.unc.min.js",
"build": "npm run build:lint && npm run build:terser",
"start": "node matcher.unc.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rexagod/matcher-cli.git"
},
"keywords": [
"publiclab",
"rexagod",
"javascript",
"node",
"image",
"analysis",
"processing",
"leaflet",
"Leaflet.DistortableImage"
],
"author": "Pranshu Srivastava",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/rexagod/matcher-cli/issues"
},
"homepage": "https://github.com/rexagod/matcher-cli#readme",
"devDependencies": {
"husky": "1.0.1",
"balanced-match": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"terser": "^4.0.0"
},
"dependencies": {
"@matcher-cli/main": "https://github.com/rexagod/matcher-cli.git",
"@matcher-core/main": "https://github.com/rexagod/matcher-core.git",
"puppeteer": "^1.17.0",
"live-server": "^1.2.1",
"node-fetch": "^2.6.0",
"vorpal": "^1.12.0"
}
}