-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
108 lines (108 loc) · 3.19 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
108
{
"name": "roku-deploy",
"version": "3.12.2",
"description": "Package and publish a Roku application using Node.js",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preversion": "npm run build && npm run lint && npm run test",
"prepublishOnly": "npm run build",
"watch": "rimraf dist && tsc --watch",
"lint": "eslint \"./src/**/*.ts\"",
"test": "nyc mocha \"src/**/*.spec.ts\" --exclude \"src/device.spec.ts\"",
"test:nocover": "mocha \"src/**/*.spec.ts\" --exclude \"src/device.spec.ts\"",
"test:device": "nyc mocha src/device.spec.ts",
"test:all": "nyc mocha \"src/**/*.spec.ts\"",
"test-without-sourcemaps": "npm run build && nyc mocha dist/**/*.spec.js",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"chalk": "^2.4.2",
"dateformat": "^3.0.3",
"dayjs": "^1.11.0",
"fast-glob": "^3.2.12",
"fs-extra": "^7.0.1",
"is-glob": "^4.0.3",
"jsonc-parser": "^2.3.0",
"jszip": "^3.6.0",
"lodash": "^4.17.21",
"micromatch": "^4.0.4",
"moment": "^2.29.1",
"parse-ms": "^2.1.0",
"postman-request": "^2.88.1-postman.40",
"temp-dir": "^2.0.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/fs-extra": "^5.0.1",
"@types/is-glob": "^4.0.2",
"@types/lodash": "^4.14.200",
"@types/micromatch": "^4.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.3",
"@types/q": "^1.5.8",
"@types/request": "^2.47.0",
"@types/sinon": "^10.0.4",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"chai": "^4.3.4",
"coveralls-next": "^4.2.0",
"dedent": "^0.7.0",
"eslint": "8.0.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"q": "^1.5.1",
"rimraf": "^6.0.1",
"sinon": "^11.1.2",
"source-map-support": "^0.5.13",
"ts-node": "^10.3.1",
"typescript": "^4.4.4"
},
"mocha": {
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"watchExtensions": [
"ts"
]
},
"typings": "dist/index.d.ts",
"bin": {
"roku-deploy": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RokuCommunity/roku-deploy.git"
},
"author": "RokuCommunity",
"license": "MIT",
"nyc": {
"include": [
"src/**/*.ts",
"!src/Errors.ts",
"!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
}
}