-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
129 lines (129 loc) · 3.21 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@metacall/deploy",
"version": "0.1.32",
"description": "Tool for deploying into MetaCall FaaS platform.",
"main": "dist/index.js",
"bin": {
"metacall-deploy": "dist/index.js"
},
"scripts": {
"test": "npm run --silent build && mocha dist/test",
"coverage": "nyc npm run test",
"unit-integration": "npm run --silent test -- --ignore **/*.integration.spec.js",
"prepublishOnly": "npm run --silent build",
"postinstall": "node -e \"require('fs').existsSync('githooks') && require('./githooks/configure.js').configure()\"",
"build": "npm run --silent lint && tsc",
"lint": "eslint . --ignore-pattern dist",
"fix": "eslint . --ignore-pattern dist --fix",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metacall/deploy.git"
},
"keywords": [
"MetaCall",
"FaaS",
"deploy",
"tool"
],
"author": "Thomas Rory Gummerson <thomas@gummerson.no> (https://trgwii.no/)",
"contributors": [
"Vicente Eduardo Ferrer Garcia <vic798@gmail.com> (https://metacall.io/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/metacall/deploy/issues"
},
"homepage": "https://github.com/metacall/deploy#readme",
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"exclude": [
"**/*-test",
"**/test",
"**/*.d.ts",
"**/src",
"githooks/**"
],
"branches": 53,
"lines": 70,
"functions": 63,
"statements": 70
},
"prettier": {
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"plugins": [
"@typescript-eslint",
"eslint-plugin-tsdoc"
],
"extends": [
"eslint:recommended",
"prettier",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"tsdoc/syntax": "warn"
}
},
"dependencies": {
"@metacall/protocol": "^0.1.24",
"archiver": "^5.0.2",
"chalk": "^4.1.1",
"console-table-printer": "^2.10.0",
"gauge": "^3.0.0",
"ini": "^1.3.5",
"inquirer": "^8.1.0",
"openapi-types": "^12.1.0",
"ts-command-line-args": "^2.2.0",
"zod": "^1.11.10"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/archiver": "^3.1.1",
"@types/concat-stream": "^2.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/ini": "^1.3.30",
"@types/inquirer": "^7.3.1",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"concat-stream": "^2.0.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.7",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"typescript": "^4.3.2"
}
}