forked from RokuRoad/bright
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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": "@roku-road/bright",
"version": "1.1.0",
"public": true,
"description": "Blazing fast parser for BrightScript that gives you ESTree like AST",
"repository": "git@github.com:RokuRoad/bright.git",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest",
"release": "tsc && semantic-release --no-ci",
"prepublishOnly": "tsc",
"coverage": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"parser",
"brs",
"brightscript",
"ast",
"cst",
"syntax",
"roku-development",
"grammar",
"roku",
"language"
],
"main": "dist/main.js",
"files": [
"dist/*.js"
],
"devDependencies": {
"semantic-release": "15.6.2",
"@types/jest": "23.1.1",
"@types/jest": "23.1.2",
"@types/lodash": "4.14.111",
"@types/node": "^10.3.5",
"babel-code-frame": "6.26.0",
"glob-all": "3.1.0",
"jest": "23.1.0",
"jest-mock": "23.1.0",
"ts-jest": "23.0.0",
"tslib": "^1.9.3",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "2.9.2",
"traverse": "0.6.6"
},
"dependencies": {
"chevrotain": "3.7.1",
"lodash": "4.17.10"
}
}