-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "window-resizeto",
"version": "0.0.2",
"description": "A window.resizeTo polyfill for test environments like Jest & JSDOM",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"src/",
"dist/",
"polyfill/"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
"homepage": "https://github.com/agilgur5/window-resizeto",
"repository": {
"type": "git",
"url": "https://github.com/agilgur5/window-resizeto.git"
},
"bugs": {
"url": "https://github.com/agilgur5/window-resizeto/issues"
},
"keywords": [
"window",
"resizeTo",
"resize",
"polyfill",
"ponyfill",
"jsdom",
"jest",
"test",
"testing"
],
"scripts": {
"lint": "tsdx lint '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"build": "tsdx build --entry src/index.ts --entry src/polyfill.ts",
"test": "tsdx test",
"test:pub": "npm run build && npm pack",
"pub": "npm run build && npm publish",
"changelog": "changelog-maker"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@agilgur5/changelog-maker": "^3.0.0",
"@babel/core": "^7.8.4",
"babel-eslint": "^10.0.2",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^12.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.1",
"jest-without-globals": "^0.0.3",
"tsdx": "github:agilgur5/tsdx#dist-multi"
}
}