-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"ava": {
"failFast": false,
"files": [
"dist/tests/**/*.js",
"!dist/tests/**/fixtures/*.js"
],
"timeout": "1m"
},
"homepage": "https://webhint.io",
"name": "telemetry",
"version": "1.0.0",
"description": "Package containing functions to calculated telemetry information.",
"dependencies": {
"applicationinsights": "^2.1.4",
"got": "^11.8.2"
},
"devDependencies": {
"@azure/functions": "^1.2.3",
"@types/node": "^16.4.9",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"ava": "^3.15.0",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^2.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"typescript": "^4.3.5"
},
"repository": "https://github.com/webhintio/telemetry.git",
"scripts": {
"build": "npm-run-all build:*",
"build:assets": "copyfiles \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build:ts": "tsc -b",
"lint": "eslint --ext ts --ignore-pattern dist .",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm run start:host & npm run watch",
"test": "npm run lint && npm run build && npm run test-only",
"test-only": "nyc ava",
"watch": "tsc -w"
}
}