-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1013 Bytes
/
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
{
"name": "pil2-compiler",
"version": "1.0.0",
"description": "PIL2 compiler",
"main": "index.js",
"bin": {
"pil2com": "src/pil.js"
},
"scripts": {
"test": "mkdir -p tmp; mocha",
"build": "npx jison src/pil_parser.jison -o src/pil_parser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zkronos73/pil2-compiler.git"
},
"author": "zkronos73",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/zkronos73/pil2-compiler/issues"
},
"homepage": "https://github.com/zkronos73/pil2-compiler#readme",
"devDependencies": {
"fastfile": "^0.0.20",
"jison": "^0.4.18",
"nyc": "^15.1.0",
"tmp-promise": "^3.0.3"
},
"dependencies": {
"chai": "^4.3.6",
"deep-equal-in-any-order": "^2.0.6",
"ffjavascript": "^0.2.55",
"js-beautify": "^1.15.1",
"lodash": "^4.17.21",
"long": "^5.2.3",
"mocha": "^10.4.0",
"prettier": "^3.3.3",
"protobufjs": "^7.2.3",
"yargs": "^17.2.1"
}
}