-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "hyperpath",
"version": "1.0.0",
"main": "dist/hyperpath.umd.js",
"license": "MIT",
"module": "dist/hyperpath.es5.js",
"typings": "dist/types/hyperpath.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.16.1"
},
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist docs",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "webpack --mode=production",
"build": "yarn build:types && yarn build:js && yarn build:doc",
"build:doc": "typedoc --out docs --target es6 --theme minimal --mode file src",
"demo": "webpack-dev-server",
"signalling-server": "star-signal",
"test": "yarn lint && yarn jest --coverage",
"test:watch": "yarn lint && yarn jest --coverage --watch",
"test:prod": "yarn lint && yarn test --no-cache"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/it-pushable": "^1.3.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"babel-loader": "^8.1.0",
"fork-ts-checker-webpack-plugin": "^4.1.2",
"jest": "^25.2.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.3",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"it-pipe": "^1.1.0",
"it-pushable": "^1.4.0",
"libp2p": "^0.27.3",
"libp2p-bootstrap": "^0.10.4",
"libp2p-kad-dht": "^0.18.6",
"libp2p-mplex": "^0.9.5",
"libp2p-secio": "^0.12.4",
"libp2p-webrtc-star": "^0.17.8",
"libp2p-websockets": "^0.13.6",
"peer-id": "^0.13.11",
"peer-info": "^0.17.5",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
}
}