-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "@36node/telegram",
"version": "0.4.1",
"description": "A module for parsing binary in buffer.",
"repository": {
"url": "36node/telegram",
"type": "git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"dist",
"typings"
],
"template": "module",
"config-overrides-path": "node_modules/@36node/sketch/config-overrides",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "sketch build",
"format": "prettier --trailing-comma es5 --write 'src/**/*.js'",
"lint": "sketch lint src",
"release": "standard-version",
"test": "sketch test --env=node"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run lint && CI=true NODE_ENV=test npm run test"
}
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"devDependencies": {
"@36node/eslint-config": "^0.6.1",
"@36node/sketch": "^0.13.9",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/jest": "^24.0.12",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "1.17.1",
"standard-version": "^6.0.1"
},
"dependencies": {}
}