-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
100 lines (100 loc) · 2.25 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
{
"name": "@rokucommunity/bslint",
"version": "0.8.26",
"description": "BrighterScript linter plugin",
"main": "dist/index.js",
"bin": {
"bslint": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"preversion": "npm run build && npm run lint && npm run test",
"lint": "eslint \"src/**\"",
"test": "nyc mocha",
"test:nocover": "mocha",
"test:watch": "npm run test -- --watch --watch-files \"src/**/*.ts,test/**/*.brs\"",
"watch": "tsc --watch",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist/**/*",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [
"roku",
"brightscript"
],
"author": "rokucommunity",
"license": "MIT",
"homepage": "https://github.com/rokucommunity/bslint",
"repository": {
"type": "git",
"url": "https://github.com/rokucommunity/bslint.git"
},
"dependencies": {
"fs-extra": "^10.0.0",
"jsonc-parser": "^2.3.0",
"minimatch": "^3.0.4",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/minimatch": "^3.0.4",
"@types/mocha": "^9.1.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"brighterscript": "^0.67.8",
"chai": "^4.3.6",
"coveralls-next": "^4.2.0",
"eslint": "^7.7.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"thenby": "^1.3.4",
"ts-node": "^10.7.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"brighterscript": ">= 0.59.0 < 1"
},
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"watchExtensions": [
"ts"
],
"timeout": "10000"
},
"nyc": {
"include": [
"src/**/*.ts",
"!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
}
}