-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "@omaha/client",
"version": "dev",
"description": "The official client library for the Omaha API.",
"author": "Bailey Herbert <git@bailey.sh> (https://bailey.sh)",
"repository": "github:omaha-js/omaha-client-js",
"bugs": "https://github.com/omaha-js/omaha-client-js/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [],
"scripts": {
"dev": "ts-node-dev --respawn --rs src/index.ts",
"build": "rimraf dist && tsc",
"watch": "rimraf dist && tsc -w",
"start": "node dist/index",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.7.1",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": ".",
"moduleNameMapper": {
"^src/?$": "<rootDir>/src/index.ts",
"^src/(.*)$": "<rootDir>/src/$1"
},
"globals": {
"ts-jest": {
"tsconfig": "tests/tsconfig.json"
}
}
},
"dependencies": {
"@baileyherbert/events": "^1.0.1",
"fetch-ponyfill": "^7.1.0",
"form-data": "^4.0.0",
"socket.io-client": "^4.5.1"
}
}