-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "p2p-chat",
"version": "3.0.0",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"repository": {
"url": "https://github.com/michal-wrzosek/p2p-chat",
"type": "git"
},
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4.2.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rollup": "^2.6.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^8.8.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"install-all": "npm i && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test": "mocha -r ts-node/register ./test/**/*.spec.ts",
"test:lint": "eslint ./src/**/*.ts ./src/**/*.tsx ./example/src/**/*.ts ./example/src/**/*.tsx",
"test:lint:fix": "npm run test:lint -- --fix"
},
"files": [
"dist"
]
}