-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
60
61
62
63
64
65
66
{
"name": "@chatie/io",
"version": "0.11.2",
"description": "Cloud Input/Output Service for Chatie",
"main": "dist/src/mod.js",
"typings": "dist/src/mod.d.ts",
"directories": {
"doc": "docs",
"test": "tests"
},
"dependencies": {
"brolog": "^1.14.2",
"is-port-reachable": "^3.1",
"json-rpc-peer": "^0.17.0",
"moment": "^2.29.1",
"p-timeout": "^4.0.0",
"request-ip": "^2.1.3",
"ws": "^8.4.2"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.2",
"@types/request-ip": "0.0.37",
"@types/ws": "^8.2.2",
"tstest": "^1.0.1"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && tsc",
"pack": "npm pack",
"example:server": "ts-node examples/server.ts",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:es": "eslint --ignore-pattern node_modules/ --ignore-pattern fixtures/ \"{bin,examples,src,scripts,tests}/**/*.ts\"",
"lint:ts": "tsc --noEmit",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "tap -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/io.git"
},
"keywords": [
"chatie",
"io",
"cloud",
"protocol"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/io/issues"
},
"homepage": "https://github.com/Chatie/io#readme",
"publishConfig": {
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}