-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
85 lines (85 loc) · 2.1 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
{
"name": "brs",
"version": "0.45.0",
"description": "An interpreter for the BrightScript language that runs on non-Roku platforms.",
"author": "Sean Barag <sean@barag.org>",
"license": "MIT",
"main": "lib/index.js",
"typings": "./types/index.d.ts",
"bin": {
"brs": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf ./lib ./types",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand -- ",
"lint": "tslint --project .",
"prettier:write": "prettier --write \"{bin,src,test}/**/*.{js,ts}\"",
"prettier": "prettier --check \"{bin,src,test}/**/*.{js,ts}\"",
"prepublishOnly": "npm-run-all --serial clean build lint prettier test"
},
"files": [
"bin/",
"lib/",
"types/"
],
"dependencies": {
"commander": "^2.12.2",
"decompress": "^4.2.1",
"fast-glob": "^3.0.1",
"long": "^3.2.0",
"luxon": "^1.8.3",
"memory-fs": "^0.4.1",
"nanomatch": "^1.2.13",
"p-settle": "^2.1.0",
"sanitize-filename": "^1.6.3",
"uuid": "^8.3.0",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"@types/decompress": "^4.2.3",
"@types/istanbul-lib-coverage": "^2.0.3",
"@types/lolex": "^2.1.3",
"@types/long": "^3.0.32",
"@types/luxon": "^1.4.1",
"@types/memory-fs": "^0.3.2",
"@types/node": "^8.5.2",
"@types/p-settle": "^2.0.1",
"@types/uuid": "^8.3.0",
"@types/xmldoc": "^1.1.4",
"doctoc": "^1.4.0",
"husky": ">=1",
"jest": "26",
"jest-junit": "^6.1.0",
"lint-staged": ">=8",
"lolex": "^3.0.0",
"npm-run-all": "^4.1.2",
"prettier": "2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "4"
},
"repository": "https://github.com/sjbarag/brs",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 100
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write"
],
"README.md": "doctoc"
}
}