-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.51 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
{
"name": "@geo6/overlay-image-preview",
"version": "0.2.4",
"description": "",
"main": "src/javascript/Overlay.ts",
"scripts": {
"demo:serve": "parcel serve demo.html --global Overlay --out-dir demo",
"demo:export": "rm -rf \"docs/\" && parcel build demo.html --global Overlay --out-dir docs --out-file index.html --public-url .",
"build": "concurrently \"rm -rf dist/\" \"npm:build:js\" \"npm:build:css\"",
"build:js": "parcel build src/javascript/Overlay.ts --global Overlay --out-file overlay.js --public-url .",
"build:css": "parcel build src/sass/overlay.scss --public-url .",
"lint": "eslint src/javascript/ --ext ts",
"lint:fix": "eslint src/javascript/ --ext ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geo6/overlay-image-preview.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/geo6/overlay-image-preview/issues"
},
"homepage": "https://geo6.github.io/overlay-image-preview/",
"dependencies": {
"mono-icons": "^1.3.1"
},
"devDependencies": {
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.37.5",
"typescript": "^4.3.5"
}
}