forked from andreruffert/progressive-image-element
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "progressive-image-element",
"version": "1.2.0",
"description": "A progressive image element",
"author": "André Ruffert",
"license": "MIT",
"repository": "andreruffert/progressive-image-element",
"source": "index.js",
"main": "dist/index.js",
"scripts": {
"test": "cypress run",
"prebuild": "rm -rf dist",
"build": "parcel build index.js progressive-image-element.css",
"dev": "parcel examples/index.html",
"prepublishOnly": "npm run build",
"cypress": "cypress",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"files": [
"dist"
],
"keywords": [
"progressive image",
"lazy loading",
"javascript",
"custom elements",
"web components",
"react",
"ui"
],
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@cypress/browserify-preprocessor": "^3.0.0",
"conventional-changelog-cli": "^2.0.31",
"cypress": "^9.5.1",
"parcel-bundler": "^1.12.4"
}
}