-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.7 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
{
"name": "tree-sitter-smcat",
"version": "1.0.1",
"description": "Tree-sitter grammar for state-machine-cat",
"main": "index.js",
"scripts": {
"build": "run-s build:generate build:gyp",
"build:generate": "tree-sitter generate",
"build:gyp": "node-gyp build",
"lint": "eslint grammar.js",
"lint:fix": "eslint --fix grammar.js",
"test": "tree-sitter test",
"update-dependencies": "run-s upem:update upem:install lint:fix build test",
"upem:install": "npm install",
"upem:update": "npm outdated --json | upem"
},
"keywords": [
"tree-sitter",
"grammar",
"state-machine-cat"
],
"author": "Sander Verweij (https://sverweij.github.io/)",
"license": "MIT",
"files": [
"binding.gyp",
"index.js",
"LICENSE",
"README.md",
"package.json",
"src/"
],
"dependencies": {
"nan": "2.13.1"
},
"devDependencies": {
"eslint": "5.15.3",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"node-gyp": "3.8.0",
"npm-run-all": "4.1.5",
"tree-sitter-cli": "0.14.5",
"upem": "2.0.0"
},
"eslintConfig": {
"extends": "standard",
"globals": {
"grammar": false,
"seq": false,
"choice": false,
"repeat": false,
"repeat1": false,
"optional": false,
"prec": false,
"token": false,
"alias": false
}
},
"homepage": "https://state-machine-cat.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/sverweij/tree-sitter-smcat"
},
"bugs": {
"url": "https://github.com/sverweij/tree-sitter-smcat/issues"
}
}