-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
114 lines (114 loc) · 2.81 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
{
"name": "@metacall/protocol",
"version": "0.1.26",
"description": "Tool for deploying into MetaCall FaaS platform.",
"exports": {
"./*": "./dist/*.js",
".": "./dist/index.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/*.d.ts"
],
".": [
"./dist/index.d.ts"
]
}
},
"scripts": {
"test": "npm run --silent build && mocha dist/test",
"unit": "npm run --silent test -- --ignore **/integration**",
"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",
"doc": "node dist/doc/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metacall/protocol.git"
},
"keywords": [
"MetaCall",
"FaaS",
"protocol"
],
"author": "Thomas Rory Gummerson <[email protected]> (https://trgwii.no/)",
"contributors": [
"Vicente Eduardo Ferrer Garcia <[email protected]> (https://metacall.io/)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/metacall/protocol/issues"
},
"homepage": "https://github.com/metacall/protocol#readme",
"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": {
"axios": "^0.21.0",
"form-data": "^3.0.0",
"ignore-walk": "^3.0.4",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ignore-walk": "^4.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^8.2.3",
"@types/node": "^14.14.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.7",
"express": "^4.17.2",
"mocha": "^9.2.0",
"prettier": "^2.1.2",
"swagger-ui-express": "^4.3.0",
"typescript": "4.3.2",
"yamljs": "^0.3.0"
}
}