-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.53 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.53 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "mailscript",
"description": "Configure and manipulate email pipeline in Mailscript from the cli",
"version": "0.4.24",
"author": "team <team@mailscript.com>",
"bin": {
"mailscript": "./bin/run"
},
"bugs": "https://github.com/getmailscript/cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"archy": "^1.0.0",
"body-parser": "^1.19.0",
"chalk": "4.1.0",
"cli-ux": "^5.5.1",
"deep-equal": "2.0.5",
"dotenv": "8.2.0",
"exec-sh": "0.3.4",
"express": "^4.17.1",
"fromentries": "1.3.2",
"jose": "^2.0.3",
"js-yaml": "^3.14.0",
"module-tree": "^1.0.0",
"node-fetch": "^2.6.1",
"oazapfts": "3.1.3",
"toposort": "2.0.2",
"traverse": "0.6.6",
"tslib": "^1",
"ws": "7.4.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/archy": "0.0.31",
"@types/chai": "^4",
"@types/deep-equal": "1.0.1",
"@types/express": "^4.17.9",
"@types/js-yaml": "3.12.5",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/node-fetch": "^2.5.7",
"@types/toposort": "2.0.3",
"@types/traverse": "0.6.32",
"@types/ws": "7.4.0",
"chai": "^4",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.15.0",
"globby": "^10",
"mocha": "^5",
"nock": "13.0.5",
"nyc": "^14.1.1",
"prettier": "^2.1.2",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=10.19.0"
},
"files": [
"/bin",
"/lib",
"/www",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/getmailscript/cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "mailscript",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"actions": {
"description": "configure your workflow actions"
},
"addresses": {
"description": "configure your email addresses"
},
"integrations": {
"description": "configure your third party integrations"
},
"keys": {
"description": "configure your address keys"
},
"sync": {
"description": "import/export configuration between files and Mailscript"
},
"triggers": {
"description": "configure your workflow triggers"
},
"user": {
"description": "configure your user details"
},
"workflows": {
"description": "configure your workflows"
}
}
},
"repository": "getmailscript/cli",
"scripts": {
"coverage": "cross-env MAILSCRIPT_CONFIG_PATH=./test/test-mailscript-config.json nyc --extension .ts --reporter=lcov mocha --forbid-only \"test/**/*.test.ts\" && codecov",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint ./src --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "cross-env MAILSCRIPT_CONFIG_PATH=./test/test-mailscript-config.json nyc --extension .ts mocha --timeout 20000 --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"format": "prettier --write \"./src/**/*.{ts,tsx,js,jsx}\"",
"format:check": "prettier --check \"./src/**/*.{ts,tsx,js,jsx}\"",
"swagger:client-compile": "./scripts/compile-client.sh"
},
"types": "lib/index.d.ts"
}