-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.06 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
{
"name": "souffle.ts",
"version": "0.2.2",
"description": "Typed bindings and helpers for using the Souffle Datalog Engine",
"keywords": [],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"souffle-ts": "dist/bin/cli.js"
},
"scripts": {
"clean": "rm -rf dist/ src/parser/parser.ts",
"transpile": "tsc",
"build-parser": "jison src/parser/souffle.jison -o src/parser/souffle_parser_gen.js -m commonjs && cp src/parser/souffle_parser_gen.js dist/parser/souffle_parser_gen.js",
"build-expr-parser": "jison src/parser/souffle_value.jison -o src/parser/souffle_value_parser_gen.js -m commonjs && cp src/parser/souffle_value_parser_gen.js dist/parser/souffle_value_parser_gen.js",
"build-parsers": "npm run build-parser && npm run build-expr-parser",
"build": "npm run clean && npm run transpile && npm run build-parsers && chmod u+x dist/bin/cli.js",
"lint": "eslint src/ test/ --ext=ts",
"lint:fix": "eslint src/ test/ --ext=ts --fix",
"test": "c8 mocha",
"prepare": "npm run build"
},
"dependencies": {
"commander": "^12.0.0",
"csv-parse": "^5.5.5",
"fs-extra": "^11.2.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expect": "^29.7.0",
"jison": "^0.4.18",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"homepage": "https://consensys.github.io/soufle.ts",
"bugs": "https://github.com/ConsenSys/soufle.ts/issues",
"repository": "https://github.com/ConsenSys/soufle.ts.git",
"license": "Apache-2.0"
}