-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "node-window-polyfill",
"version": "1.0.2",
"description": "Polyfill for the problem `window is not defined` in node.js",
"main": "index",
"scripts": {
"test": "jest",
"build:noclean": "tsc",
"build": "yarn clean && yarn build:noclean",
"clean:dist": "rm -rf *.js && rm -rf *.js.map",
"clean:types": "rm -rf types",
"clean": "yarn clean:dist && yarn clean:types",
"publish": "yarn login && yarn publish"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"homepage": "https://github.com/tgorka/node-window-polyfill",
"repository": {
"type": "git",
"url": "git://github.com/tgorka/node-window-polyfill.git",
"githubUsername": "tgorka"
},
"engine": {
"node": ">=14"
},
"author": "Tomasz Gorka",
"license": "MIT",
"dependencies": {
"ws": "^7.4.3"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"debug": "^4.3.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3",
"yarn": "^1.22.10"
}
}