-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
105 lines (105 loc) · 2.91 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "wechaty-puppet-ioscat",
"version": "0.5.22",
"description": "Puppet Ios Cat for Wechaty",
"main": "dist/src/index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"typings": "dist/src/index.d.ts",
"engines": {
"wechaty": ">=0.17.46"
},
"scripts": {
"clean": "shx rm -fr dist/* generated/*",
"dist": "tsc && cp -Rav generated/ dist/",
"example": "ts-node examples/test.ts",
"generate": "bash -x scripts/generate.sh",
"pack": "npm pack",
"lint": "npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tslint --project tsconfig.json && tsc --noEmit",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lym152898/wechaty-puppet-ioscat.git"
},
"keywords": [
"chatie",
"wechaty",
"wechat",
"chatbot",
"sdk",
"bot"
],
"author": "Yimin LIN <linyimin520812@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lym152898/wechaty-puppet-ioscat/issues"
},
"homepage": "https://github.com/lym152898/wechaty-puppet-ioscat#readme",
"devDependencies": {
"@types/amqplib": "^0.5.8",
"@types/blue-tape": "^0.1.31",
"@types/commander": "^2.12.2",
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^5.0.4",
"@types/lru-cache": "^4.1.1",
"@types/node": "^10.5.5",
"@types/normalize-package-data": "^2.4.0",
"@types/qr-image": "^3.2.1",
"@types/quick-lru": "^1.1.0",
"@types/raven": "^2.5.1",
"@types/read-pkg-up": "^3.0.1",
"@types/request": "^2.47.1",
"@types/semver": "^5.5.0",
"@types/sinon": "^5.0.2",
"@types/xml2js": "^0.4.3",
"blue-tape": "^1.0.0",
"brolog": "^1.6.5",
"file-box": "^0.8.22",
"git-scripts": "^0.2.1",
"hot-import": "^0.2.1",
"lru-cache": "^4.1.3",
"markdownlint-cli": "^0.10.0",
"memory-card": "^0.6.7",
"normalize-package-data": "^2.4.0",
"read-pkg-up": "^4.0.0",
"semver": "^5.5.0",
"shx": "^0.3.1",
"sinon": "^6.1.5",
"state-switch": "^0.6.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.0.1",
"watchdog": "^0.8.10",
"wechaty-puppet": "^0.14.1"
},
"git": {
"scripts": {
"pre-push": "./scripts/pre-push.sh"
}
},
"peerDependencies": {
"file-box": "^0.8.22",
"wechaty-puppet": "^0.14.1"
},
"dependencies": {
"amqp": "^0.2.7",
"amqplib": "^0.5.2",
"array-flatten": "^2.1.1",
"commander": "^2.17.1",
"cuid": "^2.1.3",
"deep-equal": "^1.0.1",
"flash-store": "^0.11.4",
"fs-extra": "^6.0.1",
"qr-image": "^3.2.0",
"request": "^2.87.0",
"xml2js": "^0.4.19"
}
}