-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "wechaty-openapi",
"version": "0.1.6",
"description": "Wechaty Puppet RESTful API Service",
"main": "dist/src/mod.js",
"typings": "dist/src/mod.d.ts",
"directories": {
"doc": "docs"
},
"bin": {
"wechaty-openapi-server": "dist/bin/wechaty-openapi-server.js"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && tsc",
"example": "ts-node examples/proxy.ts",
"lint": "npm run lint:es && npm run lint:ts",
"lint:ts": "tsc --noEmit",
"pack": "npm pack",
"test": "npm run lint && npm run test:unit",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/openapi.git"
},
"keywords": [
"wechaty",
"openapi",
"grpc",
"wechaty-openapi",
"restful"
],
"author": "Huan <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/openapi/issues"
},
"homepage": "https://github.com/wechaty/openapi#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.14.1",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.20.2",
"@types/express": "^4.17.11",
"@types/yargs": "^17.0.2",
"shx": "^0.3.3",
"tstest": "^0.4.10"
},
"dependencies": {
"body-parser": "^1.19.0",
"brolog": "^1.12.4",
"express": "^4.17.1",
"grpc": "^1.24.5",
"grpc-dynamic-gateway": "^0.4.4",
"yargs": "^17.0.0"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}