-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.62 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
{
"name": "substrait",
"version": "0.1.0",
"description": "Utilities for working with Substrait plans in Javascript projects",
"main": "dist/index.js",
"type": "module",
"bin": {
"substrait": "dist/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run clean-proto && npm run proto && npm run transpileProto && npm run make-dist && npm run transpile",
"make-dist": "mkdirp dist",
"clean-proto": "rimraf src/generated && mkdirp src/generated && mkdirp dist/generated",
"proto": "pbjs -w scripts/wrapper.js --target static-module --path substrait-spec/proto -o dist/generated/definitions.js substrait/plan.proto",
"transpile": "tsc",
"transpileProto": "pbts -o src/generated/definitions.d.ts dist/generated/definitions.js",
"prepare": "npm run clean-proto && npm run proto && npm run transpileProto",
"lint": "eslint '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && jest"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@viz-js/viz": "^3.2.3",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"jsdom": "^22.1.0",
"protobufjs": "^6.11.3"
},
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/jsdom": "^21.1.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"download-git-repo": "^0.0.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"git-clone": "^0.2.0",
"jest": "^29.7.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
}
}