-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
57 lines (57 loc) · 1.36 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": "lightense-images",
"version": "1.0.17",
"description": "A dependency-free pure JavaScript image zooming library less than 2 KB (gzipped)",
"main": "dist/lightense.js",
"scripts": {
"build": "webpack --progress --mode=production",
"test": "yarn eslint src/index.js",
"watch": "webpack --progress --watch --mode=development",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparanoid/lightense-images.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"css",
"image",
"javascript",
"webpack"
],
"author": "Tunghsiao Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparanoid/lightense-images/issues"
},
"homepage": "http://sparanoid.com/work/lightense-images/",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"core-js": "^3.15.2",
"eslint": "^8.0.0",
"eslint-webpack-plugin": "^3.0.0",
"husky": "^8.0.0",
"release-it": "^15.0.0",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"release-it": {
"hooks": {
"before:bump": [
"yarn test"
],
"after:bump": [
"yarn build"
]
},
"github": {
"release": true
}
}
}