-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
106 lines (106 loc) · 2.49 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
{
"name": "ropm",
"version": "0.10.27",
"description": "",
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"build": "tsc",
"lint": "eslint \"src/**\"",
"test": "nyc mocha",
"test:nocover": "mocha",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=8.1.10"
},
"engineStrict": true,
"main": "dist/cli.js",
"typings": "dist/index.d.ts",
"bin": {
"ropm": "dist/cli.js"
},
"files": [
"dist/**/*",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"author": "Bronley Plumb",
"license": "MIT",
"dependencies": {
"@xml-tools/ast": "^5.0.5",
"@xml-tools/parser": "1.0.10",
"brighterscript": "^0.68.0",
"del": "6.0.0",
"fs-extra": "9.1.0",
"glob-all": "3.2.1",
"latinize": "0.5.0",
"npm-packlist": "2.1.4",
"roku-deploy": "^3.12.2",
"semver": "^7.6.3",
"yargs": "16.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/fs-extra": "^9.0.7",
"@types/glob": "^7.1.3",
"@types/latinize": "^0.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.28",
"@types/npm-packlist": "^1.1.1",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.10",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.3.4",
"coveralls-next": "^4.2.0",
"eslint": "^8.16.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-no-only-tests": "^2.6.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"sinon": "^9.2.4",
"source-map-support": "^0.5.20",
"ts-node": "^10.4.0",
"typescript": "^5.4.5"
},
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"timeout": 20000,
"fullTrace": true,
"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
}
}