forked from bufbuild/protobuf-conformance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 758 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 758 Bytes
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
{
"name": "protoscript-conformance",
"conformanceMeta": {
"name": "protoscript",
"githubUrl": "https://github.com/TateThurston/protoscript",
"maximumEdition": "proto3",
"javascript": true,
"typescript": true,
"standardPlugin": true
},
"private": true,
"type": "module",
"scripts": {
"generate": "bash generate.sh",
"build": "tsc --noEmit",
"test": "conformance_test_runner --maximum_edition PROTO3 --enforce_recommended --failure_list failing_tests.txt --text_format_failure_list failing_tests_text_format.txt --output_dir . runner.ts"
},
"devDependencies": {
"@bufbuild/buf": "^1.36.0",
"@types/node": "^20.8.4",
"protoscript": "^0.0.18",
"tsx": "^4.7.0",
"typescript": "^5.2.2"
}
}