-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 1.85 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
74
75
{
"name": "@36node/protocol-32960",
"version": "0.8.1",
"description": "A tcp module/server for parsing 32960 protocol.",
"repository": {
"url": "36node/32960",
"type": "git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"dist",
"typings"
],
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"bin": "dist/cli.js",
"scripts": {
"build": "rm -rf dist && babel ./src -d ./dist --ignore test.js",
"format": "prettier --trailing-comma es5 --write",
"lint": "eslint src",
"release": "standard-version && git push --follow-tags origin master",
"start": "nodemon src/cli.js server --watch src --delay 1500ms --exec 'babel-node' | pino-pretty -c -t -e",
"server": "node dist/cli.js server",
"parse": "node dist/cli.js parse",
"test": "jest --silent --detectOpenHandles --forceExit"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn lint && yarn test"
}
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
},
"devDependencies": {
"@36node/babel": "*",
"@36node/eslint-config": "*",
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.3",
"pino-pretty": "^2.2.1",
"prettier": "^1.13.7",
"standard-version": "^4.4.0"
},
"dependencies": {
"@36node/telegram": "^0.3.9",
"@36node/whisper": "^0.1.11",
"clipboardy": "^1.2.3",
"commander": "^2.19.0",
"decimal.js": "^10.0.1",
"dotenv": "^6.0.0",
"only": "^0.0.2",
"pino": "^5.7.0"
}
}