-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.97 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
{
"name": "bsc-plugin-auto-findnode",
"version": "0.1.5",
"description": "A BrighterScript plugin that auto-injects `m.top.findNode()` calls in your component `init()` functions",
"main": "dist/index.js",
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"build": "rimraf out && tsc",
"lint": "eslint \"src/**\"",
"test:nocover": "mocha",
"test": "nyc mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"package": "npm run build && npm pack"
},
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"timeout": 2000,
"watchExtensions": [
"ts"
]
},
"repository": "https://github.com/rokucommunity/bsc-plugin-auto-findnode",
"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
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"brighterscript": "^0.70.4",
"chai": "^4.2.0",
"coveralls-next": "^4.2.0",
"eslint": "^8.20.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-no-only-tests": "^2.6.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^4.7.2",
"undent": "^0.1.0"
}
}