-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "@mattkrick/fast-rtc-swarm",
"version": "0.4.1",
"description": "A full-mesh WebRTC swarm built on top of simple-peer",
"keywords": [
"WebRTC",
"rtc",
"decentralized",
"distributed",
"p2p",
"peer",
"swarm",
"full-mesh"
],
"main": "dist/FastRTCSwarm.js",
"typings": "dist/FastRTCSwarm.d.ts",
"author": "Matt Krick <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mattkrick/fast-rtc-swarm"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"docs:build": "typedoc --out docs --target es6 --mode file --ignoreCompilerErrors --hideGenerator src",
"docs:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"lint": "yarn prettier && yarn standard",
"prettier": "prettier --write --loglevel warn ./**/*.ts",
"precommit": "lint-staged",
"standard": "tslint -c tslint.json --project tsconfig.json --fix ./**/*.ts",
"watch": "webpack --config webpack.config.js -w"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/uuid": "^3.4.3",
"awesome-typescript-loader": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"gh-pages": "^1.2.0",
"husky": "^0.14.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.4",
"strict-event-emitter-types": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.11.0",
"typescript": "^3.0.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@mattkrick/fast-rtc-peer": "^0.4.1",
"eventemitter3": "^3.1.0",
"tslib": "^1.9.3"
}
}