forked from MicleMing/steno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "steno-x",
"version": "0.1.1",
"description": "developer tool for integration testing of Slack Apps",
"repository": "https://github.com/MicleMing/steno.git",
"bin": {
"steno": "bin/steno"
},
"types": "./build/src/index.d.ts",
"main": "./build/src/index.js",
"scripts": {
"test": "npm run lint && npm run build && echo \"Error: no test specified\"",
"build": "tsc -p tsconfig.json",
"clean": "shx rm -rf build",
"watch": "tsc -w",
"lint": "tslint --project . src/**/*.ts",
"start": "node bin/steno",
"pkg": "npm run clean && npm run lint && npm run build && pkg --out-path pkg ."
},
"author": "fzulanming@gmail",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/debug": "4.1.5",
"@types/express": "^4.11.1",
"@types/insight": "^0.8.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.7.12",
"@types/normalize-url": "^4.2.0",
"@types/uuid": "^3.4.3",
"@types/yargs": "^13.0.3",
"pkg": "^4.3.1",
"shx": "^0.3.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^3.6.4"
},
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.18.2",
"debug": "^4.1.1",
"express": "^4.16.3",
"insight": "^0.10.1",
"js-string-escape": "^1.0.1",
"mkdirp": "^0.5.1",
"nonce-str": "^1.0.1",
"normalize-port": "^1.0.0",
"normalize-url": "^4.5.0",
"preprocess-cli-tool": "^1.0.1",
"raw-body": "^2.3.2",
"uuid": "^3.2.1",
"yargs": "^14.2.0"
},
"analytics": {
"googleTrackingId": "UA-56978219-12"
}
}