-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.67 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
{
"name": "@36node/whisper",
"version": "0.1.11",
"description": "A module for tcp framework, like kao for web.",
"repository": {
"url": "36node/whisper",
"type": "git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"start": "nodemon examples/simple.js --watch src --exec 'babel-node'",
"build": "microbundle build --target node --external events,stream,util,net,crypto,tty,os --format cjs,es",
"format": "prettier --trailing-comma es5 --write",
"lint": "eslint src",
"release": "standard-version && git push --follow-tags origin master",
"test": "jest --silent"
},
"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": "*",
"@36node/sketch-cli": "^0.5.7",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.4.2",
"lint-staged": "^8.1.4",
"microbundle": "^0.10.1",
"nodemon": "^1.18.3",
"prettier": "^1.13.7",
"standard-version": "^8.0.1"
},
"dependencies": {
"debug": "^4.1.1",
"delegates": "^1.0.0",
"koa-compose": "^4.1.0",
"nanoid": "^2.0.1",
"only": "^0.0.2",
"serialize-error": "^3.0.0"
}
}