-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 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
{
"name": "simple-peer-files",
"version": "1.2.3",
"description": "Simple library to easily transfer files over WebRTC (simple-peer). Allows resuming of files after interrupted transfer.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Subin Siby <[email protected]>",
"license": "MPL-2.0",
"keywords": [
"webrtc",
"file",
"filestream",
"p2p",
"simple-peer",
"peer"
],
"scripts": {
"dev": "tsc -w",
"lint": "standardx src/**/*.ts test/*.js --fix",
"test": "standardx src/**/*.ts test/*.js && airtap --local test/*.js"
},
"dependencies": {
"ee-ts": "^1.0.2",
"filereader-stream": "^2.0.0",
"readable-stream": "^3.6.0",
"simple-peer": "^9.7.2"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/readable-stream": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"airtap": "^3.0.0",
"axios": "^0.19.2",
"md5": "^2.3.0",
"standardx": "^5.0.0",
"tape": "^5.0.1",
"typescript": "^3.9.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subins2000/simple-peer-files.git"
},
"bugs": {
"url": "https://github.com/subins2000/simple-peer-files/issues"
},
"homepage": "https://WebDrop.Space",
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
}
}