-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "azure-timer-function-starter-typescript",
"version": "0.1.0",
"description": "Typescript starter for a timer-triggered (CRON job) Azure Function.",
"keywords": [
"azure",
"azure-functions",
"cron",
"serverless",
"typescript",
"azure-storage-emulator"
],
"repository": {
"type": "git",
"url": "https://github.com/maximivanov/azure-timer-function-starter-typescript"
},
"author": "Max Ivanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximivanov/azure-timer-function-starter-typescript/issues"
},
"homepage": "https://github.com/maximivanov/azure-timer-function-starter-typescript#readme",
"scripts": {
"lint:eslint": "eslint \"**/*.{ts,js,}\" --max-warnings=0",
"lint:tsc": "tsc --noemit",
"lint:markdown": "markdownlint *.md",
"lint": "run-p lint:*",
"audit-security": "audit-ci --config ./audit-ci.json",
"build": "tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"test": "echo \"No tests yet...\""
},
"devDependencies": {
"@azure/functions": "^1.2.2",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"audit-ci": "^3.1.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"markdownlint-cli": "^0.24.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"typescript": "^3.9.7"
}
}