forked from rokucommunity/brightscript-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "brightscript-formatter",
"version": "1.4.0",
"description": "A formatter for Roku's BrightScript language, written in JavaScript",
"main": "dist/BrightScriptFormatter.js",
"types": "dist/BrightScriptFormatter.d.ts",
"scripts": {
"compile": "rimraf dist && tsc",
"prepublishOnly": "npm run compile",
"test": "nyc mocha src/**/*.spec.ts --full-trace --bail",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"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": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
},
"repository": {
"type": "git",
"url": "git+https://github.com/TwitchBronBron/brightscript-formatter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TwitchBronBron/brightscript-formatter/issues"
},
"homepage": "https://github.com/TwitchBronBron/brightscript-formatter#readme",
"dependencies": {
"brightscript-parser": "1.1.0",
"trim-right": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"mocha": "^5.0.4",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.3",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}