-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "@poki/netlib",
"version": "0.0.14",
"license": "ISC",
"source": "lib/index.ts",
"main": "dist/netlib.js",
"types": "dist/index.d.ts",
"legacy": "dist/legacy.js",
"sideEffects": [
"lib/legacy.ts"
],
"targets": {
"types": {
"source": "lib/index.ts"
},
"main": {
"source": "lib/index.ts"
},
"legacy": {
"source": "lib/legacy.ts",
"context": "browser",
"outputFormat": "global",
"engines": {
"browsers": "supports es6-module"
},
"includeNodeModules": true
}
},
"files": [
"dist/*"
],
"scripts": {
"prepare": "yarn build",
"build": "parcel build",
"lint": "ts-standard --fix",
"cucumber": "cucumber-js --require 'features/support/**/*.ts' --require-module ts-node/register --order random --retry 2 --retry-tag-filter flakey",
"watch": "parcel --no-hmr example/index.html"
},
"dependencies": {
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@roamhq/wrtc": "^0.8.0",
"@types/node-fetch": "^2.6.11",
"@types/ws": "^8.5.12",
"node-fetch": "=2.7.0",
"parcel": "^2.12.0",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"typescript": "^5.6.3",
"ws": "^8.18.0"
},
"engines": {
"node": ">=14"
},
"browserslist": [
"defaults",
"not IE 11"
],
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}