-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 1.59 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
{
"name": "@testground/sdk",
"version": "0.1.3",
"description": "Testground SDK for JavaScript",
"platform": "node",
"keywords": [
"testground",
"testing",
"p2p"
],
"homepage": "https://github.com/testground/sdk-js#readme",
"bugs": {
"url": "https://github.com/testground/sdk-js/issues"
},
"license": "MIT",
"files": [
"src",
"dist"
],
"types": "dist/src/index.d.ts",
"main": "src/index.js",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
]
}
},
"repository": "github:testground/sdk-js",
"scripts": {
"lint": "aegir lint",
"release": "aegir release",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser"
},
"dependencies": {
"emittery": "^0.10.0",
"ipaddr.js": "^2.0.1",
"isomorphic-ws": "^4.0.1",
"lodash.flatten": "^4.4.0",
"winston": "^3.3.3",
"ws": "^8.2.3"
},
"devDependencies": {
"@types/ws": "^8.2.0",
"aegir": "^35.1.1"
},
"engines": {
"node": ">=14.0.0"
},
"browser": {
"os": "./src/shims/os.js",
"./src/env/env": "./src/shims/env/env.js",
"./src/runtime/logger": "./src/shims/runtime/logger.js"
},
"aegir": {
"test": {
"target": [
"node"
]
},
"build": {
"bundle": false
},
"release": {
"docs": false
}
},
"contributors": [
"Henrique Dias <[email protected]>",
"Laurent Senta <[email protected]>",
"Glen De Cauwsemaecker <[email protected]>"
]
}