-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 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
{
"name": "koa-ws-socket",
"version": "0.0.0-semantically-released",
"description": "Attaches ws sockets to koa using koa-style middleware",
"files": ["lib"],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/pbomb/koa-ws-socket.git",
"author": "Matt Parrish <[email protected]>",
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"private": false,
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"prebuild": "rimraf dist && rimraf compiled",
"build": "npm run tsc",
"lint": "tslint -p . -c tslint.json",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:build": "kcd-scripts test --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"validate": "kcd-scripts validate lint,build-and-test,test:cover",
"precommit": "kcd-scripts precommit",
"prettier": "prettier --write \"**/*.ts\" \"**/*.js{,on}\"",
"tsc": "tsc"
},
"devDependencies": {
"@types/jest": "22.2.0",
"@types/koa": "2.0.44",
"@types/koa-compose": "3.2.2",
"@types/ws": "4.0.1",
"kcd-scripts": "0.36.1",
"koa": "2.5.0",
"prettier": "1.11.1",
"rimraf": "2.6.2",
"ts-jest": "22.4.1",
"tslint": "5.9.1",
"typescript": "2.7.2",
"ws": "5.0.0"
},
"peerDependencies": {
"koa": ">=2",
"ws": ">=5"
},
"dependencies": {
"base64id": "^1.0.0",
"koa-compose": "^4.0.0"
},
"release": {
"analyzeCommits": {
"releaseRules": [
{
"type": "refactor",
"release": "patch"
}
]
}
}
}