-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.21 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
{
"name": "@hulu/roca",
"version": "0.15.1",
"description": "A command-line tool for running brightscript tests",
"bin": {
"roca": "./bin/cli.js"
},
"main": "src/index.js",
"files": [
"bin/",
"resources/",
"src"
],
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand -- "
},
"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": {
"ansi-colors": "^4.1.1",
"glob": "^7.1.4",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"tap-mocha-reporter": "^5.0.0",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"brs": "^0.30.0",
"doctoc": "^1.4.0",
"husky": "^4.2.5",
"jest": "^26.3.0",
"lint-staged": "^10.2.11"
},
"peerDependencies": {
"brs": "^0.25.0"
},
"lint-staged": {
"README.md": "doctoc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}