-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"devDependencies": {
"@iarna/toml": "^2.2.5",
"@types/iarna__toml": "^2.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^14.18.46",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^7.32.0",
"minimist": "^1.2.8",
"typescript": "^4.9.5"
},
"name": "@comby-tools/comby-reducer",
"description": "A program and data format reducer for arbitrary language syntax. Produces human comprehensible output. Define declarative transformations with ease.",
"version": "1.2.0",
"main": "dist/index.js",
"bin": {
"comby-reducer": "dist/index.js",
"comby-reducer-replay": "dist/replay.js"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"minimist": "^1.2.8"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comby-tools/comby-reducer.git"
},
"keywords": [
"reducer",
"program",
"fuzzing"
],
"author": "Rijnard van Tonder",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/comby-tools/comby-reducer/issues"
},
"homepage": "https://github.com/comby-tools/comby-reducer#readme"
}