-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
96 lines (96 loc) · 2.64 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
{
"name": "keybase-bot",
"version": "4.0.0",
"description": "Script Keybase in Node.js!",
"keywords": [
"keybase",
"kbfs",
"bot",
"chatbot",
"encryption",
"crypto",
"pgp",
"gpg"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/keybase/keybase-bot",
"repository": "[email protected]:keybase/keybase-bot.git",
"bugs": {
"url": "https://github.com/keybase/keybase-bot/issues"
},
"author": "Chris Coyne <[email protected]>",
"license": "BSD-3-Clause",
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{json,md,ts}": [
"prettier --write",
"git add"
]
},
"scripts": {
"modules": "yarn --frozen-lockfile --prefer-offline",
"modules-prod": "yarn --frozen-lockfile --prefer-offline --prod",
"docs": "documentation readme src/{{chat,wallet,team,kvstore}-client,index.ts} --config documentation.yml --require-extension=.ts --parse-extension=.ts --babel=./.babelrc.js --section=API --shallow --github && prettier README.md --write",
"dev": "tsc --watch",
"test": "jest --runInBand",
"release": "standard-version",
"build": "rm -rf lib/ && tsc",
"build-demos": "rm -rf demos/javascript && tsc -p ./tsconfig.demos.json",
"clean": "rm -rf lib/",
"send": "node ./lib/send.js",
"typegen": "make types"
},
"dependencies": {
"isexe": "2.0.0",
"lodash.camelcase": "4.3.0",
"lodash.kebabcase": "4.1.1",
"lodash.snakecase": "4.1.1",
"mkdirp": "0.5.1",
"which": "1.3.1"
},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/lodash.camelcase": "4.3.6",
"@types/lodash.kebabcase": "4.1.6",
"@types/lodash.snakecase": "4.1.6",
"@types/mkdirp": "0.5.2",
"@types/which": "1.3.1",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.0.0",
"documentation": "12.1.2",
"eslint": "6.2.2",
"eslint-config-prettier": "6.7.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsdoc": "15.8.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.0.0",
"jest": "25.1.0",
"lint-staged": "9.2.0",
"mathjs": "6.0.3",
"pokersolver": "2.1.3",
"prettier": "1.19.1",
"regenerator-runtime": "0.13.2",
"standard-version": "7.1.0",
"ts-jest": "25.0.0",
"typescript": "3.7.2"
}
}