-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "kalm-cli",
"version": "1.1.0",
"description": "The socket optimizer, in a portable format",
"main": "index.js",
"scripts": {
"lint": "eslint index.js tests/**/*.spec.js",
"lint:fix": "yarn lint --fix",
"test": "jest",
"build": "pkg index.js --options max_old_space_size=4096 --output bin/kalm-cli --targets node15"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalm/kalm-cli.git"
},
"author": "frederic charette <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kalm/kalm-cli/issues"
},
"homepage": "https://kalm.js.org",
"contributors": [
"frederic charette <[email protected]>"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@kalm/ipc": "5.0.0",
"@kalm/tcp": "5.0.0",
"@kalm/udp": "5.0.0",
"@kalm/ws": "5.0.0",
"kalm": "^5.0.0",
"meow": "^5.0.0"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"jest": "^26.6.0",
"nexe": "^3.3.7"
}
}