-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.08 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": "uhst",
"version": "0.0.0-development",
"description": "User Hosted Secure Transmission client",
"jsnext:main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc -p tsconfig-esm.json && rollup -c rollup.config.js dist/index.js",
"clean": "rm -rf dist",
"test": "npm run clean && mocha --require ts-node/register 'test/**/*.spec.ts'",
"test:coverage": "nyc npm run test && rm -rf ./coverage",
"test:watch": "mocha -w --require ts-node/register 'test/**/*.spec.ts'",
"lint": "tslint -c tslint.json lib/**/*.ts test/**/*.ts",
"dist": "npm test && npm run build && copyfiles package.json README.md ./example/*.html dist && typedoc",
"semantic-release": "semantic-release",
"server": "uhst"
},
"repository": {
"type": "git",
"url": "https://github.com/uhst/uhst-client-js.git"
},
"keywords": [
"webrtc",
"p2p",
"distributed"
],
"author": "Stefan Dimitrov <[email protected]>",
"private": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/uhst/uhst-client-js/issues"
},
"homepage": "https://github.com/uhst/uhst-client-js#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/chai": "^4.2.14",
"@types/jsdom": "^16.2.5",
"@types/jwt-decode": "^2.2.1",
"@types/mocha": "^5.2.0",
"@types/node-fetch": "^2.5.8",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.1.2",
"copyfiles": "^2.4.1",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.3.0",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.3",
"uhst-server": "^2.1.1"
},
"dependencies": {
"inf-ee": "^1.0.4",
"jwt-decode": "^3.1.2"
},
"release": {
"pkgRoot": "dist",
"assets": [
"dist/*.zip",
"dist/*.tar.gz"
]
}
}