-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.73 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
70
71
72
73
74
75
76
77
78
79
{
"name": "@framelabs/pylon-client",
"version": "0.0.10",
"description": "Pylon Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && jest --env=node --detectOpenHandles",
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write src test",
"prepare": "npm run build",
"prepublishOnly": "npm test"
},
"author": "Frame Labs, Inc.",
"license": "GPL-3.0-or-later",
"dependencies": {
"@framelabs/logger": "^1.0.0",
"isomorphic-ws": "4.0.1",
"ws": "8.6.0"
},
"devDependencies": {
"@babel/preset-env": "7.17.10",
"@babel/preset-typescript": "7.16.7",
"@framelabs/prettier-config": "*",
"@tsconfig/node16": "1.0.2",
"@types/jest": "29.2.2",
"@types/ws": "8.5.3",
"husky": "^8.0.2",
"jest": "29.3.1",
"prettier": "^2.8.0",
"typescript": "4.6.4"
},
"prettier": "@framelabs/prettier-config",
"jest": {
"testTimeout": 100,
"clearMocks": true,
"fakeTimers": {
"enableGlobally": true
},
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"roots": [
"test"
]
},
"babel": {
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "16"
}
}
],
"@babel/preset-typescript"
]
}
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frame-labs/pylon-client.git"
},
"bugs": {
"url": "https://github.com/frame-labs/pylon-client/issues"
},
"homepage": "https://github.com/frame-labs/pylon-client#readme"
}