-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.81 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
{
"name": "bsc-plugin-template",
"version": "1.0.0",
"description": "A BrighterScript plugin that does something awesome!",
"main": "dist/index.js",
"files": [
"dist/**/!(*.spec.*)*"
],
"typings": "dist/index.d.ts",
"scripts": {
"build": "rimraf out && tsc",
"lint": "eslint \"src/**\"",
"preversion": "npm run build && npm run lint && npm run test",
"test": "nyc mocha",
"watch": "rimraf out && tsc --watch"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"brighterscript": "^0.65.21"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^11.9.0",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"brighterscript": "^0.65.21",
"chai": "^4.2.0",
"eslint": "^8.16.0",
"eslint-plugin-no-only-tests": "2.6.0",
"fs-extra": "^11.2.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.13",
"ts-node": "8.9.1",
"typescript": "^4.7.2",
"typescript-formatter": "^7.2.2",
"undent": "^0.1.0"
},
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"timeout": 2000,
"watchExtensions": [
"ts"
]
},
"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
}
}