This repository was archived by the owner on May 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
57
58
{
"name": "@willowtreeapps/wist",
"version": "2.0.1",
"description": "A linter for BrightScript",
"keywords": [
"roku",
"brightscript",
"lint",
"ast",
"parser",
"syntax"
],
"bin": {
"wist": "./bin/wist.js",
"wist-fmt": "./bin/wist-fmt.js"
},
"scripts": {
"compile": "npm run grammar && npm run event-generator && npm run docs",
"docs": "node ./scripts/docs-rules-gen.js",
"event-generator": "node ./scripts/event-generator.js",
"grammar": "./gradlew clean generateGrammarSource",
"test": "ava",
"test:watch": "ava --watch"
},
"main": "./src/js/api.js",
"repository": {
"type": "git",
"url": "git+https://github.com/willowtreeapps/wist.git"
},
"engines": {
"node": ">=7.6.0",
"npm": ">=5.3.0"
},
"author": "WillowTree Inc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willowtreeapps/wist/issues"
},
"homepage": "https://github.com/willowtreeapps/wist#readme",
"dependencies": {
"chalk": "^2.4.2",
"hoek": "5.0.3",
"js-yaml": "^3.13.1",
"minimatch": "3.0.4",
"optionator": "0.8.2",
"path-is-inside": "1.0.2",
"strip-ansi": "4.0.0",
"strip-json-comments": "2.0.1",
"text-table": "0.2.0"
},
"devDependencies": {
"ava": "^1.4.1",
"doctrine": "2.1.0",
"fs-extra": "^6.0.1",
"jsdoc-parse": "3.0.1",
"write-yaml": "1.0.0"
}
}