forked from DmitrySoshnikov/syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "syntax-cli",
"version": "0.1.27",
"description": "Syntactic analysis toolkit, language agnostic parsers generator.",
"repository": {
"type": "git",
"url": "https://github.com/DmitrySoshnikov/syntax.git"
},
"bugs": "https://github.com/DmitrySoshnikov/syntax/issues",
"main": "index.js",
"scripts": {
"build": "node scripts/build.js",
"watch": "node scripts/build.js --watch",
"test": "jest",
"prepublish": "npm run build && npm test",
"eslint": "eslint src/ && eslint bin/syntax"
},
"bin": {
"syntax-cli": "./bin/syntax"
},
"keywords": [
"parser",
"LL(1)",
"LR(1)",
"LALR(1)",
"SLR(1)",
"generator",
"JavaScript",
"Python",
"PHP",
"Ruby",
"C#"
],
"author": "Dmitry Soshnikov",
"license": "MIT",
"dependencies": {
"nomnom": "^1.8.1",
"cli-table3": "^0.5.0",
"colors": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"shelljs": "^0.8.5",
"jest-cli": "^29.3.1",
"eslint": "^8.28.0",
"prettier": "^1.11.1"
}
}