-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
69 lines (69 loc) · 1.85 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@juggle/resize-observer",
"version": "3.3.1",
"description": "Polyfills the ResizeObserver API and supports box size options from the latest spec",
"main": "lib/exports/resize-observer.umd.js",
"module": "lib/exports/resize-observer.js",
"types": "lib/exports/resize-observer.d.ts",
"files": [
"lib/**/*.{js,ts}"
],
"scripts": {
"build": "rm -rf lib && npm run build:esm && npm run build:umd",
"build:esm": "tsc",
"build:umd": "rollup -c",
"build:docs": "echo 'no longer building docs for this version'",
"ci-tests": "npm test -- --ci --runInBand && cat coverage/lcov.info | coveralls",
"test": "npm run lint && jest --coverage",
"lint": "eslint '{src,test}/**/*.ts'",
"preVersion": "npm run build-docs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/juggle/resize-observer.git"
},
"keywords": [
"ResizeObserver",
"polyfill",
"ponyfill",
"event",
"resize",
"observer",
"typescript",
"javascript",
"element",
"component",
"container",
"queries",
"web components",
"front-end",
"html",
"Angular",
"React",
"Vue"
],
"author": "Juggle",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juggle/resize-observer/issues"
},
"homepage": "https://juggle.studio/resize-observer/",
"devDependencies": {
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"core-js": "^3.24.1",
"coveralls": "^3.1.1",
"cssnano": "^5.1.13",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-junit": "^14.0.0",
"jsdom": "^20.0.0",
"rollup": "^2.78.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}