forked from rokucommunity/roku-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
{
"name": "@adheus/roku-deploy",
"version": "3.4.2",
"description": "Package and publish a Roku application using Node.js",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"preversion": "npm run build && npm run lint && npm run test",
"prepublishOnly": "npm run build",
"lint": "eslint \"./src/**/*.ts\"",
"test": "nyc mocha \"src/**/*.spec.ts\" --exclude \"src/device.spec.ts\" --full-trace",
"test:nocover": "ts-mocha \"src/**/*.spec.ts\" --exclude \"src/device.spec.ts\" --full-trace",
"test:device": "nyc mocha src/device.spec.ts --full-trace",
"test:all": "nyc mocha \"src/**/*.spec.ts\" --full-trace",
"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",
"digest-fetch": "^1.2.0",
"eventemitter3": "^4.0.7",
"form-data": "^4.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.6",
"jsonc-parser": "^2.3.0",
"jszip": "^3.6.0",
"minimatch": "^3.0.4",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"parse-ms": "^2.1.0",
"path": "^0.12.7",
"request": "^2.88.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/chai": "^4.2.3",
"@types/denodeify": "^1.2.31",
"@types/fs-extra": "^5.0.1",
"@types/mocha": "^5.2.5",
"@types/node": "^11.9.0",
"@types/request": "^2.47.0",
"@types/sinon": "^7.0.6",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"chai": "^4.2.0",
"chai-files": "^1.4.0",
"coveralls": "^3.0.0",
"deferred": "^0.7.11",
"eslint": "^6.8.0",
"mocha": "^6.2.1",
"node-run-cmd": "^1.0.1",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"sinon": "^7.2.3",
"source-map-support": "^0.5.13",
"testdouble": "^3.5.2",
"ts-mocha": "^6.0.0",
"ts-node": "^8.4.1",
"typescript": "^4.1.2"
},
"typings": "dist/index.d.ts",
"bin": {
"roku-deploy": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adheus/roku-deploy.git"
},
"author": "",
"license": "ISC",
"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
}
}