-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "watched-box",
"version": "0.1.1",
"description": "A custom element A custom element for ResizeObserver observation, accepting any CSS length units",
"main": "watched-box.js",
"dependencies": {},
"devDependencies": {
"husky": "^4.2.5",
"uglify-es": "^3.3.9"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"uglify": "uglifyjs watched-box.js -o watched-box.min.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run uglify"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Heydon/watched-box.git"
},
"author": "Heydon Pickering",
"license": "ISC",
"bugs": {
"url": "https://github.com/Heydon/watched-box/issues"
},
"homepage": "https://github.com/Heydon/watched-box#readme"
}