-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "@antinomy-studio/size",
"version": "3.0.3",
"description": "Small util to centralize and debounce window 'resize' events.",
"type": "module",
"main": "src/index.js",
"scripts": {
"test": "browserify test/index.js | tap-closer | smokestack | faucet",
"test-debug": "budo test/index.js --live",
"build": "babel src -d --out-dir dist"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/antinomy-studio/size.git"
},
"keywords": [
"size",
"window",
"resize",
"innerwidth",
"innerheight",
"viewport",
"screen"
],
"author": "Antinomy Studio",
"license": "MIT",
"engines": {
"node": ">=12.0"
},
"bugs": {
"url": "https://github.com/antinomy-studio/size/issues"
},
"homepage": "https://github.com/antinomy-studio/size#readme",
"dependencies": {
"@antinomy-studio/sniffer": "git+https://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:[email protected]/antinomy-studio/sniffer.git",
"debounce": "^1.2.1",
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"budo": "^11.7.0",
"browserify": "^17.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"webpack-cli": "^4.10.0",
"faucet": "0.0.1",
"smokestack": "^3.6.0",
"tap-closer": "^1.0.0",
"tape": "^5.5.3"
}
}