-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "string-phone",
"version": "0.1.0",
"description": "A chat app in your local network",
"bin": {
"string-phone-client": "./src/client.js",
"string-phone-server": "./src/server.js"
},
"scripts": {
"test:unit": "mocha ./test/unit/**/*.test.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint ./**/*.js",
"lint:fix": "eslint --fix ./**/*.js",
"release": "standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KhashayarKhm/string-phone.git"
},
"keywords": [
"chat app",
"termial chat app",
"p2p chat",
"local chat"
],
"author": "KhashayarKhm <khashayar.khm@protonmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/KhashayarKhm/string-phone/issues"
},
"homepage": "https://github.com/KhashayarKhm/string-phone#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}