-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 910 Bytes
/
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
{
"name": "@blackprint/nodes-networking",
"description": "Networking utility for Blackprint",
"version": "0.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Blackprint/nodes-networking.git"
},
"module": "dist/nodes-networking.mjs",
"scripts": {
"start": "blackprint serve",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --verbose ./tests/",
"build-prod": "blackprint build production"
},
"devDependencies": {
"@blackprint/cli-tools": "0.3.x",
"@blackprint/engine": "0.8.x",
"@blackprint/sketch": "0.8.x",
"jest": "29.x",
"jest-environment-jsdom": "29.x",
"jest-environment-node": "29.x",
"scarletsframe": "0.35.x"
},
"keywords": [
"blackprint"
],
"dependencies": {
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.15.0",
"ws": "^8.11.0"
}
}