-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 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
26
27
28
29
30
31
32
33
{
"name": "cel-js",
"version": "0.0.1",
"description": "Common Expression Language Implementation in Javascript",
"author": "thesayyn",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --experimental-specifier-resolution=node src/index.js ",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thesayyn/cel-js.git"
},
"bugs": {
"url": "https://github.com/thesayyn/cel-js/issues"
},
"homepage": "https://github.com/thesayyn/cel-js#readme",
"dependencies": {
"antlr4": "^4.9.2",
"google-protobuf": "^3.17.3"
},
"devDependencies": {
"jest": "^26.4.2",
"typescript": "^4.3.5",
"protoc-gen-ts": "^0.3.9",
"@types/google-protobuf": "^3.15.3",
"@grpc/grpc-js": "^1.3.7",
"@types/antlr4": "^4.7.2"
}
}