forked from wechaty/puppet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.07 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
{
"name": "wechaty-puppet",
"version": "0.25.6",
"description": "Abstract Puppet for Wechaty",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"engines": {
"wechaty": ">=0.17.46"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && tsc",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"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' 'tests/**/*.spec.ts'",
"typedoc": "bash scripts/typedoc.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/wechaty-puppet.git"
},
"keywords": [
"chatie",
"wechaty",
"wechat",
"chatbot",
"bot",
"sdk"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/wechaty-puppet/issues"
},
"homepage": "https://github.com/wechaty/wechaty-puppet#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.8.1",
"@chatie/git-scripts": "^0.2.5",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.6.1",
"@types/normalize-package-data": "^2.4.0",
"@types/quick-lru": "^2.0.0",
"@types/read-pkg-up": "^3.0.1",
"pkg-jq": "^0.2.2",
"shx": "^0.3.1",
"tstest": "^0.4.1",
"typedoc": "^0.14.0",
"typedoc-plugin-markdown": "^2.0.0"
},
"dependencies": {
"brolog": "^1.6.5",
"clone-class": "^0.6.19",
"file-box": "^0.12.4",
"hot-import": "^0.2.1",
"memory-card": "^0.7.0",
"normalize-package-data": "^2.4.0",
"quick-lru": "^3.0.0",
"read-pkg-up": "^5.0.0",
"rx-queue": "^0.8.1",
"rxjs": "^6.2.1",
"semver": "^6.0.0",
"state-switch": "^0.9.7",
"watchdog": "^0.8.12"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}