-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.36 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.36 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
{
"name": "workflows",
"version": "1.0.0",
"description": "The RokuCommunity Workflows",
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"build": "rimraf dist && tsc",
"lint": "eslint \"src/**\"",
"watch": "tsc --watch",
"test": "nyc mocha \"src/**/*spec.ts\"",
"test:nocover": "mocha \"src/**/*.spec.ts\"",
"package": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/rokucommunity/workflows"
},
"author": "RokuCommunity",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^20.1.1",
"@vscode/vsce": "^2.22.0",
"dotenv": "^16.4.7",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.0",
"luxon": "^3.6.1",
"node-fetch": "^2.7.0",
"npm": "^11.5.1",
"ovsx": "^0.8.3",
"parse-diff": "^0.11.1",
"semver": "^7.6.3",
"tsx": "^4.19.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/dateformat": "~3",
"@types/debounce": "^1.2.1",
"@types/decompress": "^4.2.4",
"@types/dedent": "^0.7.0",
"@types/find-in-files": "^0.5.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.126",
"@types/request": "^2.48.8",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.6",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"eslint": "^8.1.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"mocha": "^11.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.4.0",
"typescript": "^4.7.2"
},
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"watchFiles": [
"src/**/*"
],
"timeout": 2000,
"fullTrace": true,
"watchExtensions": [
"ts"
]
},
"nyc": {
"include": [
"src/**/!(*.spec).ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
}
}