-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.33 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
{
"name": "@cloudfour/image-compare",
"version": "1.0.5",
"description": "A tiny, zero-dependency web component for comparing two images using a slider. Built with a focus on accessibility, performance, and progressive enhancement.",
"license": "ISC",
"type": "module",
"homepage": "https://image-compare-component.netlify.app/",
"main": "dist/index.js",
"prepare": "npm run prepare",
"files": [
"dist",
"manifests"
],
"scripts": {
"start": "run-p start:*",
"start:browser-sync": "browser-sync start --server",
"start:watch": "npx chokidar \"src/index.js\" -c \"npm run document\"",
"build": "run-s build:*",
"build:clean": "del dist",
"build:copy": "cpy src/*.js dist",
"build:minify": "minify dist/index.js > dist/index.min.js",
"document": "run-p document:*",
"document:json": "wca analyze src/index.js --outFile manifests/manifest.json",
"document:vscode": "wca analyze src/index.js --format vscode --outFile manifests/manifest-vscode.json",
"document:md": "wca analyze src/index.js --outFile manifests/manifest.md",
"prepare": "run-p build document"
},
"devDependencies": {
"browser-sync": "3.0.3",
"cpy-cli": "5.0.0",
"del-cli": "5.1.0",
"minify": "11.4.1",
"npm-run-all2": "6.2.6",
"web-component-analyzer": "2.0.0",
"chokidar-cli": "3.0.0"
}
}