This repository was archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.21 KB
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
{
"name": "coset",
"private": true,
"version": "0.1.0",
"description": "communication socket via websocket and webrtc data channel",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.json",
"test:cov": "jest --config jest.json --coverage --coverageDirectory ../coverage",
"test:e2e": "jest --config jest-e2e.json --passWithNoTests",
"lint": "lerna run lint && npm run lint:example:js && npm run lint:example:ts",
"lint:example:js": "eslint example/**/*.js",
"lint:example:ts": "tslint --project tsconfig.json --config tslint.json example/**/*.ts",
"build": "lerna run build",
"doc": "rimraf ./doc && typedoc --tsconfig ./tsconfig.json .",
"changelog": "GITHUB_AUTH=$(cat ~/github_coset_changelog_token.txt) lerna-changelog",
"clean": "lerna clean -y && rimraf ./doc && rimraf ./node_modules",
"bootstrap": "npm install",
"postinstall": "lerna bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dreaded-Gnu/coset.git"
},
"keywords": [
"RTCDataChannel",
"Websocket",
"HTML5",
"TypeScript",
"JavaScript"
],
"author": "Christian Freitag <cfreitag.cf@googlemail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dreaded-Gnu/coset/issues"
},
"homepage": "https://github.com/Dreaded-Gnu/coset#readme",
"readme": "README.md",
"engines": {
"node": "8.x || 10.x || 11.x || 12.x"
},
"devDependencies": {
"@types/jest": "24.0.11",
"acorn": "6.1.1",
"eslint": "5.16.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.1.1",
"jest": "24.7.1",
"lerna": "3.13.1",
"lerna-changelog": "0.8.2",
"pre-commit": "1.2.2",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"ts-jest": "24.0.1",
"tslint": "5.15.0",
"tslint-consistent-codestyle": "1.15.1",
"tslint-plugin-prettier": "2.0.1",
"tsutils": "3.10.0",
"typedoc": "0.14.2",
"typedoc-clarity-theme": "1.1.0",
"typedoc-plugin-external-module-map": "1.0.0",
"typescript": "3.4.1"
},
"pre-commit": [
"test",
"lint"
]
}