-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.27 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
{
"name": "@hulu/roca",
"version": "0.25.0",
"description": "A command-line tool for running brightscript tests",
"bin": {
"roca": "./bin/cli.js"
},
"main": "lib/index.js",
"typings": "./types/index.d.ts",
"files": [
"bin/",
"resources/",
"lib/",
"types/"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./lib ./types",
"lint": "tslint --project .",
"prepublishOnly": "npm-run-all --serial clean build lint prettier test",
"prettier": "prettier --check \"{bin,src,test}/**/*.{js,ts}\"",
"prettier:write": "prettier --write \"{bin,src,test}/**/*.{js,ts}\"",
"serve-docs": "docsify serve ./docs",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand -- ",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hulu/roca.git"
},
"author": "Hulu Living Room",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hulu/roca/issues"
},
"homepage": "https://github.com/hulu/roca#readme",
"dependencies": {
"@jest/reporters": "^26.6.2",
"@jest/test-result": "^26.6.2",
"@jest/types": "^26.6.2",
"ansi-colors": "^4.1.1",
"chalk": "^4.1.0",
"fast-glob": "^3.2.5",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"jest-config": "^26.6.3",
"jest-matcher-utils": "^26.6.2",
"jest-message-util": "^26.6.2",
"tap-mocha-reporter": "^5.0.0",
"tap-parser": "^10.1.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.21",
"@types/long": "^4.0.1",
"@types/memory-fs": "^0.3.2",
"@types/xmldoc": "^1.1.5",
"brs": "^0.43.0",
"docsify-cli": "^4.4.2",
"doctoc": "^1.4.0",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"brs": "^0.43.0"
},
"lint-staged": {
"./README.md": "doctoc",
"*.{ts,js}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}