-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
107 lines (107 loc) · 3.24 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
{
"name": "brighterscript-formatter",
"version": "1.7.8",
"description": "A formatter for BrighterScript, a superset of Roku's BrightScript language, written in JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"build": "rimraf dist && tsc",
"watch": "rimraf dist && tsc --watch",
"prepublishOnly": "npm run build && npm run test && npm run lint",
"lint": "eslint \"src/**\"",
"test": "nyc mocha \"src/**/*.spec.ts\" --full-trace",
"test:nocover": "mocha \"src/**/*.spec.ts\"",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"format-github": "ts-node scripts/format-github.ts",
"format-github-compare": "ts-node scripts/format-github.ts --compare",
"cli": "SET TS_NODE_TYPE_CHECK=false && ts-node src/cli.ts"
},
"bin": {
"bsfmt": "dist/cli.js",
"brighterscript-formatter": "dist/cli.js"
},
"dependencies": {
"brighterscript": "^0.68.3",
"glob-all": "^3.3.0",
"jsonc-parser": "^3.0.0",
"source-map": "^0.7.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^20.12.12",
"@types/sinon": "^10.0.6",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"child-process-promise": "^2.2.1",
"coveralls-next": "^4.2.0",
"eslint": "^8.1.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"fs-extra": "^10.0.0",
"glob-promise": "^4.2.2",
"mocha": "^9.1.3",
"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",
"undent": "^0.1.0"
},
"files": [
"dist/**/*",
"bsfmt.schema.json"
],
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"watchExtensions": [
"ts"
]
},
"nyc": {
"include": [
"src/**/!(*.spec).ts"
],
"exclude": [
"src/cli.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true,
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/RokuCommunity/brighterscript-formatter.git"
},
"author": "RokuCommunity",
"license": "MIT",
"bugs": {
"url": "https://github.com/RokuCommunity/brighterscript-formatter/issues"
},
"homepage": "https://github.com/RokuCommunity/brighterscript-formatter#readme"
}